ISAPI_Rewrite的一些参数:
# I 忽略大小写
# RP 使用301转向 整个域名重定向
# O 表示对URL进行标准化
# L Last Rule 防止被其他匹配的规则再次重写
如:
RewriteCond Host: ^iseeyou\.cn$
RewriteRule (.*) http\://www\.iseeyou\.cn$1 [I,RP]
ISAPI_Rewrite的一些参数:
# I 忽略大小写
# RP 使用301转向 整个域名重定向
# O 表示对URL进行标准化
# L Last Rule 防止被其他匹配的规则再次重写
如:
RewriteCond Host: ^iseeyou\.cn$
RewriteRule (.*) http\://www\.iseeyou\.cn$1 [I,RP]