wamp Server 多站点配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wamp Server 多站点配置相关的知识,希望对你有一定的参考价值。
WAMPServer多站点配置
1.打开目录 :\\wamp\\bin\\apache\\apache2.4.9\\conf\\extra,找到 httpd-vhosts.conf(虚拟目录文件夹)文件,打开,复制如下内容:
<VirtualHost *:80>
DocumentRoot "c:/demo/test01"(网站根目录1)
ServerName test01.com (网站1域名)
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "c:/demo/test02" (网站根目录2)
ServerName test02.com (网站2域名)
</VirtualHost>
2.打开Apache下的httpd.conf文件,
查找Virtual hosts,
将#Include conf/extra/httpd-vhosts.conf前面的#号去除。
3.打开Apache下的httpd.conf文件,查找demo(网站所放的目录)Directory "c:/demo">,找到如下这段进行修改(默认为Require all granted 允许所有访问),修改后结果
# onlineoffline tag - don‘t remove
Order Deny,Allow Allow from all #Allow from 127.0.0.1
4、设置本机访问这些站点时从本机获取资源
打开c:/windows/system32/drivers/etc/hosts
在最后添加127.0.0.1 站点的域名(不要忘了.com)如:
127.0.0.1 test01.com
127.0.0.1 test02.com
127.0.0.1意为本地服务器IP,当浏览器地址栏输入test01.com时,浏览器从本地服务器寻找资源
以上是关于wamp Server 多站点配置的主要内容,如果未能解决你的问题,请参考以下文章