2012-10-12 86 views
0

我使用這樣的URL重寫和404錯誤頁面沒有找到

RewriteRule ^help$ help.php 

URL重寫,所以如果用戶配備了domain.com/help它的工作 但如果用戶調用頁面像domain.com/help/它發送犯錯404頁找不到 如何解決此問題,在2情況下,做同樣的工作

回答

1

試試這個規則:

RewriteRule ^help/?$ help` 

添加/?使得traili ng-slash是可選的。該模式隨後開始匹配help以及help/

您可以測試該規則here

1

你需要做結尾的斜線在你的正則表達式可選:

RewriteRule ^help/?$ help.php