我是靠谱客的博主 英俊小笼包,最近开发中收集的这篇文章主要介绍Apache NameVirtualHost *:80 has no VirtualHosts问题解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
当启动apache的时候,如果事件管理器出现“Apache NameVirtualHost *:80 has no VirtualHosts”错误时,大部分是因为修改了apache的httpd.conf配置文件,将extra/vhosts.conf文件引入到httpd.conf中了。
复制代码 代码如下:
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
Include conf/extra/httpd-vhosts.conf
httpd-vhosts.conf文件中有一句配置语句为
复制代码 代码如下:
NameVirtualHost *:80
如果httpd-vhosts.conf中没有存在类似:
复制代码 代码如下:
<VirtualHost *:80>
ServerAdmin webmaster@uoften.com
DocumentRoot "D:/WAPM/www"
ServerName www.uoften.com
ServerAlias www.uoften.com
ErrorLog "logs/www.uoften.com-error.log"
CustomLog "logs/www.uoften.com-access.log" common
</VirtualHost>
配置节,就会在事件管理器中出现Apache NameVirtualHost *:80 has no VirtualHosts错误。加上同上面的配置节就不会出现这个错误了。
最后
以上就是英俊小笼包为你收集整理的Apache NameVirtualHost *:80 has no VirtualHosts问题解决办法的全部内容,希望文章能够帮你解决Apache NameVirtualHost *:80 has no VirtualHosts问题解决办法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复