当前位置:  开发笔记 > 后端 > 正文

全局301从域重定向到www.domain

如何解决《全局301从域重定向到www.domain》经验,为你挑选了2个好方法。

我可以使用Global.asax的开始请求重定向一切,

mydomain.domainwww.mydomain.domain

如果这个是真的,我该怎么做?



1> Tom Wayson..:

对Jan的回答进行了一些细微的修改,这对我有用:

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

更改是使用BeginRequest事件并将currentUrl设置为HttpContext.Current.Request.Url而不是HttpContext.Current.Request.Path.看到:

http://www.mycsharpcorner.com/Post.aspx?postID=40



2> Jan Jongboom..:
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();
  }
}


Request.Path仅返回虚拟路径,没有域名.上面的代码不起作用.
推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有