gpt4 book ai didi

ssl - IIS 8 基于 URL 地址重定向到 HTTPS

转载 作者:太空宇宙 更新时间:2023-11-03 14:01:12 26 4
gpt4 key购买 nike

假设我的服务器 IP 地址是:http://192.168.1.100 (非 SSL)
我的域名是:https://helloserver.com (SSL)

如果有人通过域 helloserver.com 访问我的网站服务器应自动将其重定向到 HTTPS。我已经通过应用以下规则设法完成了这项工作

<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Permanent"
url="https://{HTTP_HOST}/{R:1}" />
</rule>

但是如果有人从 IP 地址本身访问该网站,它会给出一个证书错误,因为该 IP 地址没有证书。

我如何修改下面的规则,当 IP 地址用于访问网站时,它将使用 HTTP 而不是重定向的 HTTPS 规则

我猜它与 <match url="" /> 有关条件。

有什么想法吗?

最佳答案

  <rule name="HTTP to HTTPS redirect" stopProcessing="true"> 
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
<add input="{HTTP_HOST}" pattern="^helloserver.com$" />
</conditions>
<action type="Redirect" redirectType="Permanent"
url="https://{HTTP_HOST}/{R:1}" />
</rule>

关于ssl - IIS 8 基于 URL 地址重定向到 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52136965/

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