2016-08-20 62 views
1

我需要重定向example.org/folder1 & example.org/folder1/example.org/file.html重定向URL有和沒有結束斜槓(符號)

請參閱我的代碼

Redirect 301 /folder1/ /file.html 

這個代碼僅匹配example.org/folder1/而忽略網址,無需關閉/如何在有或沒有/的情況下,我都可以使用它。不必重複代碼兩次!?

我也需要它不區分大小寫。

謝謝主席先生

回答

0

您可以使用RedirectMatch,使尾隨斜線可選的使用? char

RedirectMatch 301 ^/folder1/?$ /file.html 
+1

謝謝先生,這幫我解決了我的問題。 –

相關問題