wampserver设置网站文件路径,虚拟域名访问

文件:httpd.conf

@开启虚拟hosts

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

文件:httpd-vhosts.conf

@配置虚拟主机

<VirtualHost *:80>
DocumentRoot "E:/www/pz"
ServerName to.pz.com
<Directory "E:/www/">
Options Indexes FollowSymLinks
AllowOverride all
Order deny,allow
Allow From All
Require all granted
</Directory>
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>

@修改host

127.0.0.1       to.pz.com

posted @ 2015-03-03 09:28  decsev  阅读(478)  评论(0编辑  收藏  举报