我有 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!
任何想法?