码迷,mamicode.com
首页 > 其他好文 > 详细

301 redirect Domain Name using global.asax

时间:2014-11-25 18:22:54      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   os   sp   on   div   log   

 

void Application_BeginRequest(object sender, EventArgs e)
{


if (HttpContext.Current.Request.Url.ToString().ToLower().Contains("http://domain.com"))
{
// new line here
HttpContext.Current.Response.Clear();
//
HttpContext.Current.Response.Status = "301 Moved Permanently";
HttpContext.Current.Response.AddHeader("Location", Request.Url.ToString().ToLower().Replace("http://domain.com", "http://www.domain.com"));
}


}

301 redirect Domain Name using global.asax

标签:blog   http   io   ar   os   sp   on   div   log   

原文地址:http://www.cnblogs.com/dupeng0811/p/4121426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!