asp.net默认的情况使用redirect,其状态为302,这个跳转对搜索引擎来说是一个临时跳转。如果我们需要对搜索引擎更友好,就要使用301的跳转,在

asp.net使用301跳转 要这样写代码:

Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.xxxx.com");
Response.End();
最后一句Response.End()不能省略 :)

相关文章:

  • 2022-02-08
  • 2021-12-05
  • 2021-05-11
猜你喜欢
  • 2021-10-15
  • 2021-09-04
相关资源
相似解决方案