RedirectMatch和Regex Tomfoolery

时间:2009-04-16 13:52:06

标签: regex apache .htaccess

我正在尝试将/ library /的所有请求重定向到外部URL,除非请求.pdf文件。例如www.mysite.com/library/section应重新更新至www.externalsite.com,但www.mysite.com/library/docs/some_pdf.pdf应提供PDF文件而不进行重定向。这就是我所拥有的:

RedirectMatch permanent /library/!(.*\.pdf) http://www.externalsite.com/

2 个答案:

答案 0 :(得分:4)

试试这个:

RedirectMatch permanent /library/(?!.*\.pdf) http://www.externalsite.com/

答案 1 :(得分:2)

您可能希望匹配整个路径而不是子字符串:

RedirectMatch permanent ^/library/(?!.*\.pdf)$ ...