/
.htaccces / mod_rewrite を使用して存在しない場合にサフィックスを追加する方法は?
例えば
入力: http://stackoverflow.com/chat
出力:http://stackoverflow.com/chat/
これは私の現在の .htaccess です
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/admin
RewriteRule ^([^/]*)/$ /index.php?view=$1 [L]