gpt4 book ai didi

ssl - URL 应该点击 https 而不是 http

转载 作者:太空宇宙 更新时间:2023-11-03 13:50:13 25 4
gpt4 key购买 nike

我正在运行一个 Windows Server,我在其中托管了一个站点。

现在我已经完成了网站 SSL 证书的绑定(bind)。但是每次我点击网站 URL 时,它都会转到 http 而不是 https。尽管我已将 http 和 https 与 SSL 证书绑定(bind)。

例子-

当我尝试访问 abc.com 时

it goes http://example.com

代替

https://example.com

我是否需要做更多的事情来帮助我解决这个问题。所以每次我尝试访问

example.com

我会去的

https://example.com

有谁知道解决这个问题的方法吗!

最佳答案

您需要添加重定向以确保所有流量都被重定向,如下所示。确保您重写了 URL module安装。

<rule name="HTTPS force" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>

关于ssl - URL 应该点击 https 而不是 http,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52479709/

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