有没有办法免除对 mod_rewrite 中子域的任何请求?现在,我有一个将所有内容重定向到 index.html 的单页应用程序。
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index
RewriteRule (.*) index.html [L]
</IfModule>
但我想确保对 subdomain.mydomain.com 的调用永久免于重写。