如何在htaccess的url末尾添加斜杠?

时间:2015-05-22 05:57:17

标签: .htaccess url mod-rewrite redirect trailing-slash

RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*[^/])$ /$1/ [L,R=301]

当我在最后使用它添加斜杠时,它会像example.com //重定向一样//

但我想重定向我的网址

 www.example.com 

 www.example.com/

任何人都可以建议我怎么做吗?

1 个答案:

答案 0 :(得分:0)

您是否尝试过搜索论坛?

RewriteRule ^(.*)([^/])$ http://%{HTTP_HOST}/$1$2/ [L,R=301]

来源:.htaccess Rewrite to Force Trailing Slash at the end

更多问题:

Htaccess: add/remove trailing slash from URL

Add Trailing Slash .htaccess

.htaccess if url not ends with extension, add slash at the end