【服务器】iis http跳转https
程序员文章站
2022-04-30 23:44:44
...
前言
自从安装 iis + phpstudy + ssl的https证书后 ,在百度内百度了很多啊,都是很麻烦的步骤,今天给大家带来一个非常简单的 http 转向https请求配置
web.config 配置服务器
找到 iis 的服务器文件目录,比如我的是:C:\inetpub\wwwroot 。然后找到 web.config 文件,把下面的代码直接粘贴进去,然后修改域名即可。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="您的https域名" />
<!-- 比如:
<action type="Redirect" redirectType="Found" url="https://lolku.cn" />
-->
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
推荐阅读
-
服务器win2008server R2 x64 部署.net core到IIS 并解决ASP .NET Core HTTP Error 502.5 – Process Failure 的问题等
-
nginx配置文件 http 强跳转 https
-
IIS和Apache实现HTTP重定向到HTTPS
-
详解nginx服务器http重定向到https的正确写法
-
详解NGINX访问https跳转到http的解决方法
-
使用squid搭建http和https的代理服务器设置指南
-
Windows Server 2016 IIS10 设置HTTPS HTTP/2 并跑分到 A+
-
win2000服务器在IIS中使用SSL配置HTTPS网站
-
win2003架设证书服务器及让IIS6启用HTTPS服务
-
nginx强制使用https访问的方法(http跳转到https)