404頁面現在是午夜1點39分,這裡就是想普及一下404公益活動。當你訪問的網站出了問題或者使用者試圖訪問一個不存在的頁面時,此時伺服器(nginx)會返回狀態代碼為404的錯誤資訊,此時對應的頁面就是404頁面。nginx伺服器預設的404內容為404 not found!404公益我認為,當碰到404錯誤時不應該僅僅呈現一個無關緊要的頁面,正巧發現了qq搞了404公益活動,正和我益,可以協助孩子回家。有時候一個人的技術進步固然讓自己開心,但是真正的去做公益才會讓人得到滿足,附加一個404公益的連結:http://yibo.iyiyun.com/User/install/web404/nginx下實現404公益頁面(1)從404公益連結上下載404.html頁面
(2)更改nginx監聽的網站虛擬機器主機設定檔,×××.conf,在server定義地區內增加
- fastcgi_intercept_errors on;
- error_page 404 = /404.html;
- 編輯location定義地區支援404頁面呈現
#404公益 fastcgi_intercept_errors on; error_page 404 = /404.html; location = /404.html {root /public_404/html; }
(3)reload nginx好聯絡支援404公益靈創眾和官方網站好聯絡產品網站
參數說明(1)fastcgi_intercept_errors : This directive
determines whether or not to transfer 4xx and 5xx errors back to the client or to allow Nginx to answer with directive error_page.
(2)error_page :The directive specifies the URI
that will be shown for the errors indicated.