在之前的文章中分享到"設置301重定向方法 "文章,提到301,那肯定也要說說404錯誤頁面吧。因為我們默認安裝了LNMP後404頁面不會自動設置,也不會默認到程序的404錯誤頁面,而需要我們手工設置。具體如何設置呢?我們一起往下看。
第一步,編輯 /usr/local/nginx/conf/nginx.conf 文件,在http區域添加下面的代碼;
fastcgi_intercept_errors on;
第二步,編輯你需要添加404頁面的網站的conf文件,對應在 usr/local/nginx/conf/vhost/XXXX.com.conf,在server區域添加代碼;
error_page 404 = /404.html;
第三步,重啟 LNMP;
/root/lnmp restart
總結,我們可以通過 /usr/local/nginx/sbin/nginx -t 來測試返回狀態是否正確。
the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
configuration file /usr/local/nginx/conf/nginx.conf test is successful
如果是上述返回狀態,就是正確的。
本文固定鏈接: http://www.laozuo.org/215.html | 老左博客