Global 301 redirection from domain to www.domain

前端 未结 2 1300
刺人心
刺人心 2020-12-16 06:31

could i use the begin request of Global.asax to redirect everything,

from mydomain.domain to www.mydomain.domain?

If this one is true, how

2条回答
  •  青春惊慌失措
    2020-12-16 07:07

    protected void Application_PreRequestHandlerExecute(Object sender, EventArgs e)
    {
      string currentUrl = HttpContext.Current.Request.Path.ToLower();
      if(currentUrl.StartsWith("http://mydomain"))
      {
        Response.Status = "301 Moved Permanently";
        Response.AddHeader("Location", currentUrl.Replace("http://mydomain", "http://www.mydomain"));
        Response.End();
      }
    }
    

提交回复
热议问题