htaccess中的RedirectMatch

时间:2011-11-08 22:46:57

标签: apache .htaccess

我该如何修改

RedirectMatch ^/?folder/(.*) https://elsewhere.com/abc.php?var=1\&d=$1

添加例外,这样如果地址是文件夹/打印机,那么它不会重定向,但其他一切都有吗?

1 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteRule !^/?folder/printer/

以上(!)您的RedirectMatch应该可以解决问题。

另外,请查看this post