什么应该看起来isapi重写规则,可以将 https 更改为特定页面的 http ,例如:
https://www.portal.com/mypage至http://www.portal.com/mypage
此致
答案 0 :(得分:0)
尝试使用:
RewriteCond %{HTTP:Host} (.*)
RewriteCond %{HTTPS} !on
RewriteCond %{REQUEST_URI} (/mypage)
RewriteRule .? https://%1%2 [R,L]