当前位置:Gxlcms > PHP教程 > apache子域名设立

apache子域名设立

时间:2021-07-01 10:21:17 帮助过:13人阅读

apache子域名设置
本地的环境,apache的配置文件中设置的根目录是d:/AppServ/www/,子域名的配置如下,放在配置文件开始了

NameVirtualHost *:80


ServerName localhost
ServerAlias localhost
DocumentRoot D:/AppServ/www/


# AllowOverride FileInfo Options
Options None
Order allow,deny
Allow from all




ServerName dede
ServerAlias dede
DocumentRoot D:/AppServ/www/Dede/


# AllowOverride FileInfo Options
Options None
Order allow,deny
Allow from all




ServerName ikaihui
ServerAlias ikaihui
DocumentRoot D:/AppServ/www/ikaihui/


# AllowOverride FileInfo Options
Options None
Order allow,deny
Allow from all



现在的情况是:输dede和ikaihui都能正常显示,输localhost的话chrome会报这个错:
错误 103 (net::ERR_CONNECTION_ABORTED):未知错误。

IE也打不开。
删掉localhost那一段的话,输localhost会显示dede的页面,我现在想输localhost正常显示www文件夹下面的index.php,该怎么配


------解决方案--------------------
看看是不是你的反病毒或者防火墙之类导致的.
------解决方案--------------------
你的写法是正确的
清除一下浏览器缓冲区看看
我就是这样写的
NameVirtualHost *:80


ServerName localhost
DocumentRoot /AMP/web



ServerName www.a.net
DocumentRoot /AMP/web/www.a.net



ServerName www.b.net
DocumentRoot /AMP/web/www.b.net


------解决方案--------------------
那你把里面的 Directory 一节去掉看看

------解决方案--------------------
加这个看下
Alias /绑定目录 "绝对物理路径"

人气教程排行