我想要那个 http://www.example.com/contact 总是重定向到 http://www.example.com/contact/ 以斜杠结尾。
这是我当前的简单网址重写设置:
RewriteEngine On
RewriteBase /
RewriteRule ^([^.]+)$ index.php?page=$1
答案 0 :(得分:0)
尝试以下操作:
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{DOCUMENT_ROOT}/$1/index.html -f
RewriteRule ^(.+?)/?$ /$1/index.html [L]