使用htaccess在我的域名末尾添加斜杠


add slashes at end of my domain using htaccess

我的域名是http://www.domain1.dk

我想使用。htaccess在域名末尾添加斜杠。应该是http://www.domain1.dk/

Thanks in advance

下次请用Google来代替这么快的问题。

答案来源:https://stackoverflow.com/a/7781331/6486232

在. htaccess:

RewriteCond %{REQUEST_URI}  !'.(php|html?|jpg|gif)$
RewriteRule ^(.*)([^/])$ http://%{HTTP_HOST}/$1$2/ [L,R=301]