由于项目改版,导致产生了许多死链,但是之前的404页面都是在Application_Error中Response.Redicet()到404页面,但是这样子是302跳转,导致搜索引擎认为网页不是死链而是正常的链接,所以应该返回400状态码给搜索引擎。网上的方法个人觉得太过繁杂。

代码:在Application_Error中

 Response.StatusCode = ;
Response.WriteFile(Server.MapPath("/404.html"));
Response.End();

静待效果!

05-11 16:53