字體:  

教你如何在 nginx 下自訂 404 Error Page 頁面

htctouch 發表於: 2013-10-23 21:20 來源: ADJ網路控股集團


如果想在 nginx 底下設定跟 Apache 一樣自訂 404 Error Page...
可以這樣做~~

加上紅色的段落~~

QUOTE:


server {

error_page 404  /404.html;
location  /404.html {
    internal;
}


location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
        fastcgi_intercept_errors on;
        }
}


重啟 Nginx 就可以了~~

如果你想自訂 404.html 的頁面...讓每個 Error Page 都跳轉回首頁...可以將 404.html 修改成如下:

QUOTE:


<html>
<head>
<meta http-equiv="refresh" content="0; url=./">
<title></title>
</head>
</html>