asp.net 增長404頁面(非30二、200)

因爲項目改版,致使產生了許多死鏈,可是以前的404頁面都是在Application_Error中Response.Redicet()到404頁面,可是這樣子是302跳轉,致使搜索引擎認爲網頁不是死鏈而是正常的連接,因此應該返回400狀態碼給搜索引擎。網上的方法我的以爲太過繁雜。html

代碼:在Application_Error中ide

 

1 Response.StatusCode = 404;
2 Response.WriteFile(Server.MapPath("/404.html"));
3 Response.End();
View Code

靜待效果!搜索引擎

相關文章
相關標籤/搜索