apache配置多个虚拟主机 localhost访问不了解决方案
在httpd-vhosts.conf,重定向localhost
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "D:/PHPAPACHERUN"
ServerName localhost
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
而如果出现访问127.0.0.1的结果不是自己想要的,可能是因为httpd-vhosts.conf,存在了多个<VirtualHost *:80>,地址127.0.0.1按顺序解析,解析到第一个,修改DocumentRoot的地址或调整顺序即可。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。