0

这是我到目前为止所尝试的。

 <rule name="https main site to http" stopProcessing="true">
       <match url="^(.*)$" ignoreCase="true" />
       <conditions>
            <add input="{HTTPS}" pattern="Off" />
       </conditions>
       <action type="Redirect" url="http://{HTTP_HOST}/{REQUEST_URI}" />
 </rule>

如何将https://www.mysite.com重定向到http://www.mysite.com

4

1 回答 1

0

很久以前就有人问过这个问题,但这里似乎已经回答了这个问题:How to force HTTPS using a web.config file。如果您使用完整答案,请密切注意其中提到查询字符串被附加两次的评论。

于 2014-09-08T16:57:47.460 回答