301重定向

private void Page_Load(object sender, System.EventArgs e) 
{ 
  Response.Status = "301 Moved Permanently"; 
  Response.AddHeader ("Location","http://www.bloghuman.com"); 
}
原文地址:https://www.cnblogs.com/shy1766IT/p/5406099.html