如果后缀/
不存在,如何使用 .htaccces / mod_rewrite 添加?
例如
输入: http://stackoverflow.com/chat
输出:http://stackoverflow.com/chat/
这是我当前的 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/admin
RewriteRule ^([^/]*)/$ /index.php?view=$1 [L]
如果后缀/
不存在,如何使用 .htaccces / mod_rewrite 添加?
例如
输入: http://stackoverflow.com/chat
输出:http://stackoverflow.com/chat/
这是我当前的 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/admin
RewriteRule ^([^/]*)/$ /index.php?view=$1 [L]