URL 应该点击 https 而不是 http

URL should hit https instead of http

我是运行一个Windows服务器,我在其中托管了一个站点。

现在我已经为站点完成了与 SSL 证书的绑定。但是每次我访问网站 URL,它都会转到 http 而不是 https。虽然我已经用 SSL 证书绑定了 http 和 https。

例子-

当我尝试击中 abc.com

it goes http://example.com

而不是

https://example.com

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

example.com

我会去

https://example.com

有谁知道解决此问题的方法!

您需要添加重定向以确保所有流量都被重定向,如下所示。确保安装了 URL rewrite 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>