Apache配置虚拟主机后,不能访问localhost的问题_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Apache配置虚拟主机后,不能访问localhost的问题

Apache配置虚拟主机后,不能访问localhost的问题

 2018/3/24 11:47:17  青春..荒唐  程序员俱乐部  我要评论(0)
  • 摘要:【前言】Apache配置虚拟主机后,不能访问localhost,只能通过设置好虚拟域名访问。可以通过把localhost变成虚拟域名。参考文件:http://570109268.iteye.com/blog/2414410【主体】(1)设置虚拟域名先在httpd-vhosts.conf设置好虚拟域名localhost<VirtualHost_default_:80>DocumentRoot"C:\phpStudy\"ServerNamelocalhost<
  • 标签:配置 问题 虚拟主机 主机 Apache

【前言】

? ? ? Apache配置虚拟主机后,不能访问localhost,只能通过设置好虚拟域名访问。

? ? ? 可以通过把localhost变成虚拟域名。

? ? ? 参考文件:http://570109268.iteye.com/blog/2414410

?

【主体】

(1)设置虚拟域名

先在httpd-vhosts.conf设置好虚拟域名localhost

class="php" name="code"><VirtualHost _default_:80>
   DocumentRoot "C:\phpStudy\" 
   ServerName localhost       
</VirtualHost>

?

Apache配置虚拟主机后,不能访问localhost的问题

(2)把httpd.conf文件的ServerName localhost:80 那行注释

Apache配置虚拟主机后,不能访问localhost的问题

(3)别忘了查看hosts文件里是否绑定 localhost指向127.0.0.1,一般情况下会存在

Apache配置虚拟主机后,不能访问localhost的问题

?

(4)重要的是第二点,要注释掉httpd.conf文件的ServerName localhost:80

?

?

?

?

?

?

?

?

?

?

?

.

上一篇: PHP练习《留言板》附源码 下一篇: 没有下一篇了!
发表评论
用户名: 匿名