加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

ASP.NET站点.将整个域从http重定向到https

发布时间:2020-12-16 07:18:39 所属栏目:asp.Net 来源:网络整理
导读:就像在标题中一样.如何重定向整个域,例如:http://testdomain.com.au/到https://testdomain.com.au/我可以在IIRF文件中执行此操作吗?如果是,这应该是什么样子?如何将IIRF文件绑定到站点? 解决方法 您可以通过IIS Rewrite模块执行此操作: http://www.iis
就像在标题中一样.如何重定向整个域,例如:http://testdomain.com.au/到https://testdomain.com.au/我可以在IIRF文件中执行此操作吗?如果是,这应该是什么样子?如何将IIRF文件绑定到站点?

解决方法

您可以通过IIS Rewrite模块执行此操作:

http://www.iis.net/downloads/microsoft/url-rewrite

http://www.iis-aid.com/articles/how_to_guides/redirect_http_to_https_iis_7

<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://{HTTP_HOST}/{R:1}" />
</rule>

或者您可以通过Global.asax文件重定向:

protected void Application_BeginRequest(Object sender,EventArgs e)
{
    if ( !Request.IsSecureConnection)
    {
            string path = string.Format("https{0}",Request.Url.AbsoluteUri.Substring(4)); 

            Response.Redirect(path);
    }
}

http://forums.asp.net/t/1340392.aspx

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读