wamp上配置域名
程序员文章站
2022-05-11 23:34:03
...
还可以配置多域名多目录。屏蔽网站广告~~
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
ServerAdmin 1439120442@qq.com
DocumentRoot "D:/www/thinkphpTest"
ServerName www.jiayou.com
ServerAlias www.jiayou.com
ErrorLog "logs/ www.jiayou.com -errlo.log"
CustomLog "logs/ www.jiayou.com -access.log" common
Options FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from all
1.找到wamp安装目录的Apache安装目录 找到 httpd.conf文件 例如我安装的目录为C:\wamp\bin\Apache\Apache2.2.21\conf\httpd.conf
也可以通过wamp图标打开。查找 Virtual hosts 去掉下面include行前面的## Virtual hosts
Include conf/extra/httpd-vhosts.conf
2.这样就包含了C:\wamp\bin\Apache\Apache2.2.21\conf\extra\httpd-vhosts.conf文件
在后面添加
ServerAdmin 1439120442@qq.com
DocumentRoot "D:/www/thinkphpTest"
ServerName www.jiayou.com
ServerAlias www.jiayou.com
ErrorLog "logs/ www.jiayou.com -errlo.log"
CustomLog "logs/ www.jiayou.com -access.log" common
Options FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from all
其中 ServerAdmin、ErrorLog 、CustomLog为可选配置,也可以不对其进行配置。
3.C:\Windows\System32\drivers\etc\hosts中后面添加
#2015-12-5 15:06:52 测试多域名
127.0.0.1 www.jiayou.com
这里可以对各种站点进行屏蔽。
4.重启Apache服务。就ok了。
以上就介绍了wamp上配置域名,包括了Apache方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: js数组操作常用方法_基础知识
下一篇: pdo里面怎么得到所查询的数据的条数?