转载请注明出处:http://blog.csdn.net/l1028386804/article/details/48142201

一、配置

Apache配置虚拟目录主要是修改httpd.conf文件就可以了。

打开httpd.conf文件,找到如下代码:

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
如图所示:

Apache之——配置虚拟目录(监听多个端口)_Apache

在这段代码的下面添加如下代码:

#配置虚拟目录
<IfModule dir_module>
   #配置欢迎页面
   DirectoryIndex index.html index.htm index.php
   #站点别名
   Alias /apache "d:/Apache"
   <Directory d:/Apache>
        #这是访问权限的设置
	Order allow,deny
	Allow from all
   </Directory>
</IfModule>
如下图:

Apache之——配置虚拟目录(监听多个端口)_Apache_02

注意:下图中1和2两个位置的路径必须相同

Apache之——配置虚拟目录(监听多个端口)_Apache_03

然后找到代码:

DocumentRoot "D:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"
将它注释掉

如下图

Apache之——配置虚拟目录(监听多个端口)_Apache_04

到此,配置完毕

二、测试

在d盘下新建Apache文件夹,然后新建index.html文件,输入"你好吗?"文字用于测试。

如下图:

Apache之——配置虚拟目录(监听多个端口)_Apache_05

在浏览器地址栏中输入http://127.0.0.1:8080显示“你好吗?”,则配置成功.如下图:

Apache之——配置虚拟目录(监听多个端口)_Apache_06

三、注意

我Apache端口配置的是8080,各位同学可以根据自己的需要来配置自己的端口号。具体配置是找到httpd.conf文件中的如下代码:

Listen 8080
如下图:

Apache之——配置虚拟目录(监听多个端口)_Apache_07

可以将8080修改为自己需要的端口,同时也可以继续在下面添加Listen 端口号来监听多个端口