一。修改windows/system32/drivers/etc/hosts文件。
127.0.0.1 localhost
127.0.0.1 stick.eff.do
二。新建虚拟主机的目录,在extra/httpd-vhosts.conf文件中。
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "d:/wamp/www"
ServerName localhost
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
三。在httpd.conf开启虚拟主机的功能。
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
四。以防出现403错误,在httpd.conf加。
<Directory />
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
allow from 127.0.0.1
<Directory />
五。以防出现404错误。
重新配置localhost的主机。
六。简书好胆小,不能复制大于号小于号。
七。为什么访问127.0.0.1出现404错误。
网友评论