伪静态设置目录自动加斜杠的方法
例如用户访问 /web 自动在后面加 "/",变成 /web/,通过伪静态做301还能让权重不分散。
规则如下:
ISAPI Rewrite 2
RewriteCond Host: (.*)
RewriteRule (1+2) http://$1/$2/ [I,RP]
ISAPI Rewrite 3
RewriteCond %{HTTP:Host} (.*)
RewriteRule ^(1+2)$ http://%1/$1/ [NC,R=301]
Apache .htaccess:
RewriteCond %{REQUEST_URI} ^/3+4$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]