1
如何在index.(php|html ...)
之前刪除/
?如何刪除/索引之前?
例子:
www.HTTP_HOST.com/x/index.php to www.HTTP_HOST.com/x
www.HTTP_HOST.com/../../../index.php to www.HTTP_HOST.com/../../..
我用這個改寫條件,但仍然/
。
RewriteCond %{THE_REQUEST} ^GET\ .*/index\.(php|html|hml)\ HTTP
RewriteRule ^(.*)/index\.(php|html|hml)$ $1 [R=301,L]
這沒有奏效。它像我的重寫條件一樣刪除index.php,但index.php之前的斜槓仍然存在。 www.HTTP_HOST.com/test/index.php - > www.HTTP_HOST/test/ – mirmidon
現在嘗試一下,做一個應該工作的編輯 – Excalibur