gpt4 book ai didi

asp.net - 在 IIS 7.5 上运行的 ASP.NET 应用程序上强制使用 Https

转载 作者:行者123 更新时间:2023-12-04 08:15:09 25 4
gpt4 key购买 nike

我在我的 web.config 文件中使用以下代码在我的整个站点上强制使用 SSL;

<system.webServer>
<rewrite>
<rules>
<rule name="Redirect HTTP to HTTPS" stopProcessing="true">
<match url="(.*)"/>
<conditions>
<add input="{HTTPS}" pattern="^OFF$"/>
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther"/>
</rule>
</rules>
</rewrite>
</system.webServer>

但我想做的是强制 ssl 只有 ~/purchase/~/account/路径和在他们之下。匹配网址应该是什么?

注意 正则表达式和通配符也适用于我。

最佳答案

您应该使用此模式(这适用于 /purchase/something 以及 /account/something-else ):

^((purchase|account)/.*)$

您必须记住,该 URL 不应有前导斜杠 / .
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Force HTTPS" stopProcessing="true">
<match url="^((purchase|account)/.*)$" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

关于asp.net - 在 IIS 7.5 上运行的 ASP.NET 应用程序上强制使用 Https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6556926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com