我正在尝试重定向到特定文件扩展名的其他网址。以下是为此目的编写的重写规则:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(jpg|png|css|js|php)$
RewriteRule ^(.*)$ http://localhost.test.com:90/$1 [R=301,L]
</IfModule>
这会将所有文件重定向到http://localhost.test.com:90/网址。请帮我理解上述规则出了什么问题。提前谢谢。