一门APP开发教程

标题: windows服务器IIS强制http跳转https [打印本页]

作者: 陈家粉儿    时间: 2021-10-25 13:22
标题: windows服务器IIS强制http跳转https

在根目录找到web.config
之后直接复制下面的重定向代码进去即可

  1. <?xml version="1.0" encoding="UTF-8"?>

  2. <configuration>
  3.     <system.webServer>
  4.         <rewrite>
  5.             <rules>
  6.                 <rule name="http redirect to https" stopProcessing="true">
  7.                     <match url="(.*)" />
  8.                     <conditions>
  9.                         <add input="{HTTPS}" pattern="^OFF[        DISCUZ_CODE_0        ]quot; />
  10.                         <add input="{HTTPS_HOST}" pattern="^(localhost)" negate="true" />
  11.                     </conditions>
  12.                     <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
  13.                 </rule>
  14.             </rules>
  15.         </rewrite>
  16.     </system.webServer>
  17. </configuration>
复制代码



如果您的服务器配置了web.config没有生效
请查看您是否有安装URL重定向工具
如果还没有安装
请传送到微软官网下载安装
https://www.microsoft.com/zh-cn/ ... mation.aspx?id=7435






欢迎光临 一门APP开发教程 (https://bbs.yimenapp.com/) Powered by Discuz! X3.4