重定向除此文件夹css或js或图像

时间:2017-12-21 12:21:49

标签: .htaccess

我想重定向除了这个文件夹css或者js或者图像,但是没有用。

我试过下面的代码 -

RewriteCond %{REMOTE_HOST} !^(css|js|image)
RewriteRule ^([^/]+)/?$ find.php?term=$1&type=test&path=1 [L,QSA]

RewriteRule ^([^(css|js|images|/)]+)/?$ find.php?term=$1&type=test&path=1 [L,QSA]

但它不起作用。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您需要与℅{REQUEST _URI}匹配,而不是℅{REMOTE _HOST}

RewriteCond %{REQUEST_URI}  !\.(css|js|image)
RewriteRule ^([^/]+)/?$ find.php?term=$1&type=test&path=1 [L,QSA]