我的网站有 SSL 证书。我想将我的网站重定向到secure.mywebsite.in。我已经尝试过将http重定向到https。
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);
}
}
我怎样才能重定向www.mysite.in
到secure.mysite.in
?