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