标签:
文件: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
标签:
原文地址:http://www.cnblogs.com/decsev/p/4310176.html