我正在使用这个 mod-rewrite 规则将我网站的主页重定向到同一网站上的 /it/ 子目录。
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RedirectMatch 301 ^/$ http://www.example.com/it/
但是,我想免除此 url 被重定向
http://www.example.com/?act=25
我怎样才能写一个豁免条件来做到这一点?