如何在URL末尾添加斜杠?

时间:2018-06-29 17:44:23

标签: .htaccess mod-rewrite url-rewriting

我想要那个 http://www.example.com/contact 总是重定向到 http://www.example.com/contact/ 以斜杠结尾。

这是我当前的简单网址重写设置:

RewriteEngine On
  RewriteBase /
  RewriteRule ^([^.]+)$ index.php?page=$1

1 个答案:

答案 0 :(得分:0)

尝试以下操作:

RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{DOCUMENT_ROOT}/$1/index.html -f
RewriteRule ^(.+?)/?$ /$1/index.html [L]