在之前的文章中分享到”設置301重定向的方法“文章,提到301,那肯定也要說說404錯誤頁面吧。因為我們默認安裝了lnmp后404頁面不會自動設置,也不會默認到程序的404錯誤頁面,而需要我們手工設置。具體如何設置呢?我們一起往下看。
第一步,編輯 /usr/local/nginx/conf/nginx.conf 文件,在http區(qū)域添加下面的代碼;
復制代碼代碼如下:
fastcgi_intercept_errors on;
第二步,編輯你需要添加404頁面的網(wǎng)站的conf文件,對應在 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),就是正確的。