我在我的htaccess文件下面的代碼:的.htaccess重寫部隊尾隨斜線刪除後的.html
Options -Indexes
RewriteEngine On
# Redirect external .php requests to extension less url
RewriteCond %{THE_REQUEST} ^(.+)\.html([#?][^\ ]*)?\ HTTP/
RewriteRule ^(.+)\.html$ http://%{HTTP_HOST}/foo/$1 [R=301,L]
# Resolve .html file for extension less html urls
RewriteRule ^([^/.]+)$ $1.html [L]
這正常工作,當我去www.mydomain.com/foo/index html的內部消除。我想要強制拖尾索引結尾的斜槓,但我不知道如何
有誰知道如何修改我的代碼,使尾部斜槓工作?
謝謝!
的可能的複製[的.htaccess重寫部隊尾隨斜線末(HTTP ://stackoverflow.com/questions/7780859/htaccess-rewrite-to-force-trailing-slash-at-the-end) – mani