asp.net的Global.asax中做301跳转
程序员文章站
2023-12-28 10:39:28
...
301跳转可以把网址权重传递集中到规范化网址中,网上也有讲很多种跳转方法,这里记一下Global.asax的Application_BeginRequest 方法中写,下面举例子输入xx.net时候跳转到www.xx.com:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
if (System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].ToLower().Equals("xx.net"))
{
string newurl = "http://www.xx.com" + System.Web.HttpContext.Current.Request.RawUrl;
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.StatusCode = 301;
System.Web.HttpContext.Current.Response.Status = "301 Moved Permanently";
System.Web.HttpContext.Current.Response.AddHeader("Location", newurl);
}
}
推荐阅读
-
asp.net的Global.asax中做301跳转
-
ASP.NET MVC中的Global.asax文件
-
ASP.NET MVC中的Global.asax文件
-
Nginx服务器中HTTP 301跳转到带www的域名的方法
-
ASP.NET中的跳转 200, 301, 302转向实现代码
-
微信域名防封跳转系统的原理 微信做推广活动中如何做好微信域名防封
-
关于ASP.NET MVC中Response.Redirect和RedirectToAction的BUG (跳转后继续执行后面代码而不结束进程)以及处理方法
-
ASP.NET中的页面跳转和页面之间的信息传递方法介绍
-
Nginx服务器中HTTP 301跳转到带www的域名的方法
-
ASP.NET中的跳转 200, 301, 302转向实现代码