例如用户访问 /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]


  1. .?
  2. .?/
  3. .
  4. /

标签: 伪静态, rewrite, htaccess

添加新评论