标签: apache .htaccess
我该如何修改
RedirectMatch ^/?folder/(.*) https://elsewhere.com/abc.php?var=1\&d=$1
添加例外,这样如果地址是文件夹/打印机,那么它不会重定向,但其他一切都有吗?
答案 0 :(得分:0)
RewriteEngine On RewriteRule !^/?folder/printer/
以上(!)您的RedirectMatch应该可以解决问题。
RedirectMatch
另外,请查看this post