对于特定页面,ISAPI重写规则将https请求更改为http 1

时间:2011-12-20 14:40:30

标签: isapi-rewrite

什么应该看起来isapi重写规则,可以将 https 更改为特定页面的 http ,例如:

https://www.portal.com/mypagehttp://www.portal.com/mypage

此致

1 个答案:

答案 0 :(得分:0)

尝试使用:

RewriteCond %{HTTP:Host} (.*)
RewriteCond %{HTTPS} !on
RewriteCond %{REQUEST_URI} (/mypage)
RewriteRule .? https://%1%2 [R,L]