终于可以独立在wampserver上建虚拟主机了

一。修改windows/system32/drivers/etc/hosts文件。

127.0.0.1      localhost

127.0.0.1      stick.eff.do

二。新建虚拟主机的目录,在extra/httpd-vhosts.conf文件中。


ServerAdmin [email protected]

DocumentRoot "d:/wamp/www"

ServerName localhost

ErrorLog "logs/dummy-host2.example.com-error.log"

CustomLog "logs/dummy-host2.example.com-access.log" common


三。在httpd.conf开启虚拟主机的功能。

# Virtual hosts

Include conf/extra/httpd-vhosts.conf

四。以防出现403错误,在httpd.conf加。

Options FollowSymLinks

AllowOverride None

Order allow,deny

allow from all

allow from 127.0.0.1


五。以防出现404错误。

重新配置localhost的主机。

六。好胆小,不能复制大于号小于号。

七。为什么访问127.0.0.1出现404错误。

你可能感兴趣的:(终于可以独立在wampserver上建虚拟主机了)