2015-05-25 93 views

回答

0

讓我們開始:

打開Global.asax中代碼FINDE 的Application_BeginRequest,改變這樣的:

protected void Application_BeginRequest(object sender, EventArgs e) 
     { 
      if (HttpContext.Current.Request.IsSecureConnection.Equals(false) && HttpContext.Current.Request.IsLocal.Equals(false)) 
      { 
       Response.Redirect("https://" + Request.ServerVariables["HTTP_HOST"] + HttpContext.Current.Request.RawUrl); 
      } 
     } 

賓果!

+0

這不適用於IIS8 - 有沒有解決這個問題? – MC9000