如果使用.htaccces / mod_rewrite不存在后缀/
,如何添加?{/ strong>
例如
输入:http://stackoverflow.com/chat
输出:http://stackoverflow.com/chat/
这是我目前的.htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/admin
RewriteRule ^([^/]*)/$ /index.php?view=$1 [L]
答案 0 :(得分:0)
您需要在最后一条规则之前使用重定向规则,例如:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/admin
RewriteRule ^(.+[^/])$ $1/ [R=301,L]
RewriteRule ^([^/]*)/$ /index.php?view=$1 [L]
(未测试)。
编辑:oops,忘了添加尾随/!