在Apache Server中,启用虚拟主机是否意味着“主机”被禁用?

时间:2013-09-04 06:23:37

标签: php apache virtualhost

我正在配置我的apache服务器。在httpd.conf中,我将DocumentRoot设置如下:

DocumentRoot "D:/phpwwwroot"

我将目录节点设置如下:

<Directory "D:/phpwwwroot">
    Options Indexes FollowSymLinks
    AllowOverride All
   Order allow,deny
    Allow from all
</Directory>

目前,我还没有启用虚拟主机。我访问了网址:http://localhost:8080/,一切正常。

接下来,我尝试设置虚拟主机。我取消注释了虚拟主机。如下:

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

我的httpd-vhosts.conf如下:

NameVirtualHost *:8080

<VirtualHost *:8080>
    ServerName www.testphp1.com
    DocumentRoot "D:\VirtualRoot"
    DirectoryIndex index.shtml index.html index.htm index.php  
    <Directory "D:\VirtualRoot">  
        Options Indexes FollowSymLinks 
        AllowOverride all  
        Order allow,deny  
        Allow from all  
    </Directory>  
</VirtualHost>

<VirtualHost *:8080>
    ServerName www.testphp2.com
    DocumentRoot "D:\VirtualRoot1"
    DirectoryIndex index.shtml index.html index.htm index.php  
    <Directory "D:\VirtualRoot1">  
        Options Indexes FollowSymLinks 
        AllowOverride all  
        Order allow,deny  
        Allow from all  
    </Directory>  
</VirtualHost>

我还编辑了hosts文件以更正映射,你应该知道我的意思:

127.0.0.1 www.testphp1.com
127.0.0.1 www.testphp2.com

接下来重启apache服务器,访问以下网址:

http://www.testphp1.com:8080/
http://www.testphp2.com:8080/

一切都好。它们映射到正确的文件夹。

提出了一个新问题,当我尝试访问http://localhost:8080/时,它会转到第一个虚拟主机--www.testphp1.com。我的意思是该页面显示www.testphp1.com显示的内容。

似乎“主要主机”不起作用。

它是如何发生的?如何解决它

2 个答案:

答案 0 :(得分:0)

当您使用IP访问服务器时,情况也是如此。它将显示使用此IP的第一个活动网站(此处localhost被视为IP)。您可以先通过定义主网站来修复它。

答案 1 :(得分:0)

您还需要添加主要主机,例如:

<VirtualHost *:8080>
    ServerName localhost
    DocumentRoot "D:/phpwwwroot"

</VirtualHost>