301与302页面重定向

Response.Clear();
Response.StatusCode = 301;
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "http://www.chinawutong.com/202/");
Response.End();

 

301重定向为永久重定向,搜索引擎以后可能会直接收录重定向后的页面,302为临时重定向

posted @ 2017-01-10 11:21  一直乱跑的熊  阅读(294)  评论(0编辑  收藏  举报