摘要: asp.net默认的情况使用redirect,其状态为302,这个跳转对搜索引擎来说是一个临时跳转。如果我们需要对搜索引擎更友好,就要使用301的跳转,在 asp.net使用301跳转 要这样写代码:Response.Status = "301 Moved Permanently"; Response.AddHeader("Location","http://www.xxxx.com"); Re... 阅读全文
posted @ 2008-02-14 12:41 lu xu 阅读(572) 评论(0) 推荐(0) 编辑