我想喲從URL中移除的蹤跡斜線這種模式刪除尾隨斜線與的.htaccess
http://localhost/~francesco/mycms/about/
,使其
http://localhost/~francesco/mycms/about
我已經試過很多規則但沒有人爲我工作。
我重寫規則是這樣的現在
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~francesco/mycms/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)$ index.php?page=$1 [L]
</IfModule>
希望有人能幫幫我!
退房:http://stackoverflow.com/questions/1368276/removing-trailing-slashes-with-mod-rewrite – 2012-01-30 18:20:27
我」不工作,我很抱歉。 http://pastebin.com/847u3vac – 2012-01-30 18:32:26