2012-09-03 193 views
-3

如何編寫Apache重寫規則?
我想將http://abc.com/test/filename.air重定向到http://abc.com/test/filename.exe重寫規則重定向?

我試圖

ProxyPass /test/filename.air http://abc.com/test/filename.exe 

而且

RewriteRule ^(.*)/filename.air $1/filename.exe 

並沒有爲我工作。

+0

http://whathaveyoutried.com(*) - 如何寫一個重寫規則字面上在這個網站上被詢問和回答超過3000次。您是否閱讀過任何這些答案,或者我敢說,mod_rewrite手冊?這是一個單一的網頁。 –

回答

2

這對我的作品

RedirectMatch/filename.air $ $ 1 /文件名.exe

+0

這真的很有幫助。 :) –