Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人尝试使用Intelligencia.UrlRewriterhttp到https,反之亦然页面重定向。我似乎无法让它在我的网站上运行。虽然我能够在 http 页面之间使用重写。
Intelligencia.UrlRewriter
提前非常感谢。
这似乎对我有用,在 web.config 中:
<rewriter> <if header="HTTPS" match="^OFF$"> <redirect url="(.*)" to="https://mydomain$1" /> </if> </rewriter>
尽管我发现 IIS 和 MVC 至少设置 [RequireHttps] 将使用 302 自动处理 http -> https 重定向。