2009-04-16 60 views
2

我試圖將/ library /的所有請求重定向到外部URL,除非.pdf文件被請求。例如www.mysite.com/library/section應該重寫爲www.externalsite.com,但www.mysite.com/library/docs/some_pdf.pdf應該在不重定向的情況下提供PDF文件。下面是我有:RedirectMatch和正則表達式Tomfoolery

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

回答

4

試試這個:

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

Thankya親切!那就是訣竅。 – lewsid 2009-04-16 14:13:37

2

你可能想整個路徑匹配,而不是一個字符串:

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