Apache的httpd.conf的虚拟主机及虚拟目录的设
虚拟主机的添加:
添加类似这样的标签
<VirtualHost127.0.0.1:808>
ServerNameceshi.com
DocumentRoot"../ceshi"
</VirtualHost>
注意的是:如果使用了80意外的端口,需要在httpd.conf文件里,加上Listen808
虚拟目录的添加:
添加类似这样的标签
#####Apache虚拟目录的设置
Alias/aa"D:/em"
<Directory"D:/em">
OptionsIndexesFollowSymLinks
Orderallow,deny
Allowfromall
</Directory>
Alias/bb"D:/abcd"
<Directory"D:/abcd">
OptionsIndexesFollowSymLinks
Orderallow,deny
Allowfromall
</Directory>
转载其他的:
前段时间在服务器上配置了多个虚拟目录,都是从网上找的资料,不过也很费劲,apache有好多版本,虚拟目录又有好多种配置方式,这里记录下我的配置方法
我的apache版本是2.2
1、将原有的DocumentRoot注释掉
2、增加监听端口
Listen80
Listen81
Listen82
Listen83
3、创建虚拟主机地址
NameVirtualHost192.168.0.142:80
NameVirtualHost192.168.0.142:81
NameVirtualHost192.168.0.142:82
NameVirtualHost192.168.0.142:83
4、配置虚拟主机
<VirtualHost192.168.0.142:80>
ServerNametestlink
DocumentRootD:/workspace/testlink1.7.4
</VirtualHost>
<VirtualHost192.168.0.142:81>
ServerName××
DocumentRootD:/workspace/××
</VirtualHost>
<VirtualHost192.168.0.142:82>
ServerName××
DocumentRootD:/workspace/××
</VirtualHost>
<VirtualHost192.168.0.142:83>
ServerName××
DocumentRootD:/workspace/××
</VirtualHost>
注意:本地访问不能用localhost,具体为什么没弄清楚,反正能用就行了,嘿嘿