gpt4 book ai didi

IIS URL 重写 https 规则忽略 localhost

转载 作者:行者123 更新时间:2023-12-01 21:39:37 24 4
gpt4 key购买 nike

我正在尝试编写 URL 重写规则来强制 HTTPS 连接。这种情况应该总是发生,除非请求使用本地主机(例如 http://localhost/mysite)。

规则配置如下:

 <rule name="Redirect to https" enabled="true" stopProcessing="true">
<match url="(.*)" negate="false" />
<conditions trackAllCaptures="false">
<add input="{HTTPS}" pattern="^OFF$" />
<add input="{URL}" pattern="localhost" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>

我还尝试使用 ^localhost 和 ^localhost/(.*) 作为 URL 条件的模式,但没有任何帮助。有谁知道为什么这不起作用以及这个问题的解决方案应该是什么?

最佳答案

您的代码应该如下所示

<rule name="Redirect to https" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTPS}" pattern="off" />
<add input="{HTTP_HOST}" pattern="localhost" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>

关于IIS URL 重写 https 规则忽略 localhost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26219744/

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