1. 打 Apacheconfhttpd.conf 文件,搜索 「Include
conf/extra/httpd-vhosts.conf」,确保 Include conf/extra/httpd-vhosts.conf 前面没有
# 注释符,也就是确保引入了 vhosts 虚拟主机配置文件。
在虚拟主机设置文 extrahttpd-vhosts.conf 里设置:
取消 NameVirtualHost *:80 前面的 ##,这样就启用了 vhosts.conf ,默认的 httpd.conf 默认配置失效。虚拟主机配置将只设置在 httpd-vhosts.conf 里。
在 Apacheconfextrahttpd-vhosts.conf 这个文件里面的最后面添加以下代码 (C:ComsenzEXPwwwrootww
) 这个是你的网站目录地址,www.weixiaoduo.com 这个是你要绑定的域名。

<VirtualHost 127.0.0.1:80>
DocumentRoot D:ComsenzEXPwwwroot
ServerName www.weixiaoduo.com
ServerAlias *
DirectoryIndex index.htm index.php index.html
ErrorLog "logs/test-error_log"
CustomLog "logs/test.log" common
</VirtualHost>

<VirtualHost 127.0.0.2:80>
DocumentRoot D:ComsenzEXPwww
ServerName weixiaoduo.com
ServerAlias *
DirectoryIndex index.htm index.php index.html
ErrorLog "logs/test-error_log"
CustomLog "logs/test.log" common
</VirtualHost>

注:DocumentRoot D:ComsenzEXPwwwroot 为网站地址
       ServerName weixiaoduo.com 为域名