评论

收藏

[IIS] 使用ISAPI_Rewrite做简单实用的301重定向

web服务器 web服务器 发布于:2021-11-03 22:32 | 阅读数:342 | 评论:0

但是对于虚拟主机用户来说,301重定向很难,因为虚拟主机提供商一般不会提供这个设置。
但是对于安装了ISAPI Rewrite的空间,那么301重定向就相对来说变得简单了。
下面我们还是以实例来说明正确使用ISAPI Rewrite做301重定向的方法吧。
1.3版的域名重定向:
# For ISAPI_Rewrite 1.3 重定向域名 
#重定向jb51.cn 
RewriteCond Host: ^uoften.com$ 
RewriteRule (.*) https://jb51.cn$1 [I,R] 
#重定向www.uuwar.org 
RewriteCond Host: ^www.uoften.com$ 
RewriteRule (.*) https://www.jb51.cn$1 [I,R]
这里我们要将uoften.com重定向到jb51.cn
由于ISAPI Rewrite现在使用较多的有两个版本2.x版跟3.x版
那么就把两个版本的规则都写出来,3.0版本是不兼容2.0的规则的,只是有提供规则转换器,导入就可以转换了。
# For ISAPI_Rewrite 2.x 
RewriteCond Host: ^maphack.org$ 
RewriteRule (.*) https://jb51.cn$1 [I,RP] 
RewriteCond Host: ^www.maphack.org$ 
RewriteRule (.*) https://www.jb51.cn$1 [I,RP] 
# For ISAPI_Rewrite 3.x 
RewriteCond %{HTTP:Host} ^maphack.org$ 
RewriteRule (.*) https://jb51.cn$1 [NC,R=301] RewriteCond %{HTTP:Host} ^www.maphack.org$ 
RewriteRule (.*) https://www.jb51.cn$1 [NC,R=301]
说明:[I,RP]:I表示忽略大小写,RP表示使用301转向,以上都是整个域名重定向。

单一页面重定向的写法,将根目录下的1.html重定向到https://www.jb51.cn/index.html:
# For ISAPI_Rewrite 2.x 
RewriteRule ^/1.html$ https://www.jb51.cn/index.html [I,O,RP,L] 
# For ISAPI_Rewrite 3.x 
RewriteRule ^/1.html$ https://www.jb51.cn/index.html [NC,L,R=301,O]

说明:O表示对URL进行标准化,L表示Last Rule,最后一条规则,也就是后面的重写规则对他不起作用,防止被其他匹配的规则再次重写。这里的路径可以是相对路径也可以是绝对路径。
关注下面的标签,发现更多相似文章