进入后找下有没有web.config文件,如果没有,就手动创建一个 ),如果服务的是宝塔服务器nginx配置,只要在ssl栏其它证书打开:强制HTTPS按钮打开,
而windows配置,需要新建web.config的空的,然后把下面代码复制进去,保存,然后上传到网站根目录下就行,最后测试下打开网址,看下是否会自动跳转到https://www.你的网址名.com形式,如果会,说明配置成功,反之,失败。
代码如下:
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="http2021426" stopProcessing="true">
<match url=".*"/>
<conditions>
<add input="{HTTP_HOST}" pattern="^boroad.net$"/>
</conditions>
<action type="Redirect" url="http://www.boroad.net/{R:0}" redirectType="Permanent"/>
</rule>
<rule name="Zkeys-HTTPS-0eI2H6$1" enabled="true" stopProcessing="true">
<match url="(.*)" ignoreCase="true"/>
<conditions>
<add input="{HTTPS}" pattern="^OFF$"/>
</conditions>
<action type="Redirect" url="https://www.boroad.net{REQUEST_URI}" redirectType="Permanent"/>
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Custom">
<remove statusCode="404" subStatusCode="-1"/>
<error statusCode="404" prefixLanguageFilePath="" path="404.html" responseMode="File"/>
</httpErrors>
</system.webServer>
</configuration>