>백엔드 개발 >PHP 튜토리얼 >wampserver vhost问题

wampserver vhost问题

WBOY
WBOY원래의
2016-06-23 13:55:46970검색


httpd-vhosts.conf文件


    DocumentRoot "D:\wamp\www"
    ServerName  a.com



    DocumentRoot "D:\wamp\www\yiqu"
    ServerName  b.com 

写了
hosts
127.0.0.1 a.com
127.0.0.1 b.com
为什么访问 a.com还是打不开


回复讨论(解决方案)

httpd.conf 中的 Include conf/extra/httpd-vhosts.conf 去掉注释了吗?

httpd-vhosts.conf文件


    DocumentRoot "D:\wamp\www"
    ServerName  a.com



    DocumentRoot "D:\wamp\www\yiqu"
    ServerName  b.com 

写了
hosts
127.0.0.1 a.com
127.0.0.1 b.com
为什么访问 a.com还是打不开


直接写在apache的httpd.conf
或者写在httpd-vhosts.conf,但是要注释掉httpd.conf里面加载httpd-vhosts.conf的#号



httpd-vhosts.conf文件


    DocumentRoot "D:\wamp\www"
    ServerName  a.com



    DocumentRoot "D:\wamp\www\yiqu"
    ServerName  b.com 

写了
hosts
127.0.0.1 a.com
127.0.0.1 b.com
为什么访问 a.com还是打不开


直接写在apache的httpd.conf
或者写在httpd-vhosts.conf,但是要注释掉httpd.conf里面加载httpd-vhosts.conf的#号 或者写在httpd-vhosts.conf,但是要注释掉httpd.conf里面加载httpd-vhosts.conf的#号 我是这样做的哈

在httpd.conf中的还有几处AllowOverride None需要改成AllowOverride All 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.