首页 > Web开发 > 详细

http 重定向到 https

时间:2021-09-08 18:57:42      阅读:37      评论:0      收藏:0      [点我收藏+]

最近遇到如下问题,网站安全扫描时检测到的漏掉。

技术分享图片

 

 

服务器环境: Windows 2008 R2 + IIS 7.5   

网站:ASP.NET

修改了web config 中的设置

 

 

<?xml version="1.0" encoding="UTF-8"?>
 
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="http redirect to https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                        <add input="{HTTPS_HOST}" pattern="^(localhost)" negate="true" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

 

 

参考:https://www.hadsky.com/read-3212-1.html

https://blog.csdn.net/jackbon8/article/details/84578904 (这里有Apache环境、Ngnix环境的设置方法, 但我没有使用到,有需要的可做参考)

 

http 重定向到 https

原文:https://www.cnblogs.com/catherinehu/p/15218361.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!