ASP.NET 动态 301 重定向

ASP.NET 动态 301 重定向,其实很简单,见代码:

protected void Page_Load(object sender, EventArgs e)
 {
      this.Header.Title = "说说那些事";
      Response.Status = "301 Moved Permanently";
      Response.AddHeader("Location", "http://www.cqun.com");
}

0 comments:

Post a Comment