1

一些细节

  • XAMPP 1.7.1
  • 在 vista 和 xp 上测试的操作系统

大家好。我在配置我的虚拟主机时遇到了一些问题。目前我有两个网站。

这是我的 vhost.conf 文件:

<VirtualHost *:80>
    ServerAdmin me@site.nl
    DocumentRoot c:/xampp/htdocs/site1/trunk/
    ServerName site1.local
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin me@site.nl
    DocumentRoot c:/xampp/htdocs/site2/trunk/
    ServerName site2.local
</VirtualHost>

当然,在我的主机文件中,我有

127.0.0.1 site1.local
127.0.0.1 site2.local

我已经多次重新启动 apache 以及我的浏览器。

这是我的问题:

http://site1.local有效。但是当我访问http://site2.local时,我登陆的是 site1.local。

有任何想法吗?

4

1 回答 1

2

尝试

<VirtualHost "site1.local">
    ServerAdmin spam@a1230912##ad#.nl
    DocumentRoot c:/xampp/htdocs/site1/trunk/
    ServerName site1.local
</VirtualHost>

<VirtualHost "site2.local">
    ServerAdmin spam@a1230912##ad#.nl
    DocumentRoot c:/xampp/htdocs/site2/trunk/
    ServerName site2.local
</VirtualHost>

你总是得到 site1 因为 Apache 默认是第一个。

编辑

取消注释

#NameVirtualHost *

NameVirtualHost *

在你的 httpd.conf

我说(/etc/httpd/conf/httpd.conf)

126 # Listen: Allows you to bind Apache to specific IP addresses and/or
127 # ports, in addition to the default. See also the <VirtualHost>
128 # directive.
129 #
130 # Change this to Listen on specific IP addresses as shown below to 
131 # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
132 #
133 Listen 127.0.0.1:80
134 NameVirtualHost 127.0.0.1

我的虚拟主机文件有

<VirtualHost "www.whatever.com">
        DocumentRoot /var/www/html/whatever/pub
        ErrorLog logs/error_log
        ServerName www.whatever.com
...
于 2009-05-25T14:54:55.313 回答