wamp设置域名绑定域名访问的方法:
1.安装并启动wampserver,选择Apache → 打开httpd.conf配置文件。
2.再修改httpd.conf配置文件,找到“#Include conf/extra/httpd-vhosts.conf”,将注释符“#”去掉,启用虚拟主机功能。
3.再进入wampserver的安装目录,找到/bin/apache/apache2.2.22/conf/extra/目录下的“httpd-vhosts.conf”配置文件。
4.修改httpd-vhosts.conf文件,在末尾添加以下域名目录绑定配置。
ServerAdmin webmaster@v.localhost.com
DocumentRoot "G:/wamp/www/ckplayer"
ServerName v.localhost.com
ErrorLog "logs/dummy-v.localhost.com-error.log"
CustomLog "logs/dummy-v.localhost.com-access.log" common
5.最后进入wampserver,重启所有服务即可。