iis中让网站网址从http强制跳转https的方法,http强制转向https
今天有一个客户要求网站强制使用https访问,因为谷歌浏览器如果打开http的网站会提示访问不安全,因此要求强制使用https访问,如果用户打开的是http就强制跳转到https上,百度上找了圈,很多种方法,但是都很麻烦,*用了一种最暴力最简便的方法,直接修改web.config就行了,下面介绍方法:
http强制转向https解决办法:下面介绍一种简单暴力的解决办法
注意:你的iis必须安装url重写这个功能,如果“url重写”没有,需要先安装
1.打开前端部署的文件夹
2.创建一个文件,命名为 web.config
3.编辑web.config,内容如下
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="httptohttps" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
下面这种是设置了默认文件名的方法:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.html" />
<add value="index.asp" />
<add value="index.htm" />
<add value="default.html" />
<add value="default.htm" />
<add value="default.asp" />
</files>
</defaultDocument>
<rewrite>
<rules>
<rule name="httptohttps" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
上面两种方法你挑一种即可。
案例参考:
http://www.henrymachinery.com/
http://www.brickmachine.ltd/
http://www.legobrickmachine.com/
这三个网站你测试一下,打开上面网站域名,自动跳转到https了
在网站上的方法:https://blog.csdn.net/xuliqi666/article/details/128129015