WampServer多域名配置
1.将你要绑定的域名,使用A记录绑定到 127.0.0.1
2.启动wampserver服务,左键单击右下角wampserver图标,打开Apache菜单下“httpd.conf”文件;
找到“# Include conf/extra/httpd-vhosts.conf” ,把这句前面的#号去掉,启用了虚拟主机配置文件 httpd-vhosts.conf 的引用。
3.在Apache安装目录的conf-extra目录下,比如我的是 D:wampinapacheapache2.2.22confextra,
用记事本打开httpd-vhosts.conf,最最底部你会看到2个虚拟主机样例,将其中一个修改为类型下面的,删除多余的样例:
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "C:/wamp/wwwroot/www.landui.com"
ServerName www.landui.com
ServerAlias www.landui.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>
4.左键单击wampserver,重启所有服务;
5.用记事本打开 c:windowssystem32driversetc 目录下hosts文件,在最下面添加一行:
127.0.0.1 www.landui.com
6.在浏览器下输入www.landui.com,可以看到通过http已经访问到本机下 C:/wamp/wwwroot/www.landui.com 目录,
以后你只要将这个网站的文件放在这个目录即可。
如果还不能访问,设置一下权限配置。