Apache VirtualHost正在运行但页面无法显示

时间:2015-11-03 13:35:54

标签: vhosts

我在我的本地计算机上进行配置,但每件事情看起来都是正确的,但它不起作用或工作很奇怪。

我已尝试过所有建议而没有成功。

我的问题是

  • 我无法使用我定义的ServerName访问我的V主机。
  

我当前的v主机配置是

<VirtualHost 127.0.0.2:80>
    DirectoryIndex index.php
    DocumentRoot "c:/web/Apache24/htdocs/myproj"
    ServerName www.myproj.dev 

        <Directory C:/web/Apache24/htdocs/myproj>
          Require all granted
        </Directory>

</VirtualHost>




<VirtualHost *:80>
  DocumentRoot c:/web/Apache24/htdocs
  ServerName localhost
</VirtualHost>

我的主机文件包含127.0.0.2 www.myproj.dev

  

httpd -t -D DUMP_VHOSTS中运行 cmd给了我

VirtualHost配置:

如果我在httpd-vhost.conf和主机文件中将127.0.0.2更改为127.0.0.1,则在URL中输入127.0.0.1我可以访问我的vhost文件夹,并且还应该使用localhost访问htdocs文件夹。

0 个答案:

没有答案