0

有没有人尝试使用Intelligencia.UrlRewriterhttp到https,反之亦然页面重定向。我似乎无法让它在我的网站上运行。虽然我能够在 http 页面之间使用重写。

提前非常感谢。

4

1 回答 1

0

这似乎对我有用,在 web.config 中:

<rewriter>
  <if header="HTTPS" match="^OFF$">
    <redirect url="(.*)" to="https://mydomain$1" />
  </if>
</rewriter>

尽管我发现 IIS 和 MVC 至少设置 [RequireHttps] 将使用 302 自动处理 http -> https 重定向。

于 2013-09-03T15:47:30.717 回答