Answers:
有几种方法可以执行此操作,但是如果您安装了URL重写模块,则这是相当简单且不错的方法。
您可以将以下配置粘贴到您站点的web.config文件中(该<system.webServer></system.webServer>
部分随附)
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="https redirect">
<match url="(.*)" ignoreCase="false" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="false" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}{REQUEST_URI}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
或者,您可以使用IIS的UI来创建新规则,如下面的屏幕截图所示。
您也可以使用UrlRewriter.NET。使用的规则如下所示:
<rewriter>
<if header="HTTPS" match="^OFF$">
<redirect url="(.*)" to="https://yourdomain.com$1"/>
</if>
</rewriter>
首先,您需要在SSL设置中禁用“需要SSL”。然后,您可以遵循斯科特的解决方案。
顺便说一句,我关注了RuslanY Blog的博客 http://ruslany.net/2009/04/10-url-rewriting-tips-and-tricks/