本教程适用于:IIS8及以上IIS版本(windwos 2012及windows 2016以及windows 2019系统)
下面将演示如何在IIS8以上的IIS版本中部署多个不同域名的SSL证书方法步骤
1、将证书导入到IIS中,如图 2、证书导入成功后我们绑定https即可,
至此,HTTPS绑定成功了,现在使用http和https都可访问站点,若需要http访问跳转到https,可参考如下代码(将域名更换为您自己的)本文章由301免备案跳转原创,转载请注明出处:https://www.zfcdn.xyz/showinfo-2-35791-0.html 否则追究法律责任。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTPS-301" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTPS}" pattern="^on$" negate="true" />
</conditions>
<action type="Redirect" url="https://www.zfcdn.xyz/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
亲爱的:被墙域名跳转TG:@qianhenetwork QQ:851617266,可否收藏+评论+分享呢?
文章评论 本文章有个评论