0

我有 2 个这样的虚拟主机:

<VirtualHost *:80>
DocumentRoot /var/www/html/watermelon/hhgt/webroot
ServerName booking
#ErrorLog logs/booking-error_log
#CustomLog logs/booking-access_log common
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
</VirtualHost>

<VirtualHost *:5321>
    DocumentRoot /var/www/html/watermelon/ik/webroot
    ServerName hotspot.local
    ErrorLog logs/hotsppot.local-error_log
    CustomLog logs/hotsppot.local-access_log common
    <Directory />
        Options FollowSymLinks
        AllowOverride All
    </Directory>
</VirtualHost>

他们有相同的.htaccess:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

有时第一个虚拟主机会加载第二个虚拟主机的 index.php!

任何想法?

4

1 回答 1

1

这可能是因为您在 /etc/apache2/sites-available/ 中使用了默认值

检查您是否正确设置了可用站点,进一步检查 /var/logs/apache2 中的 Apache 日志

于 2012-12-21T12:55:24.827 回答