nginx/0.8.6 配置404錯誤頁面
nginx/0.8.6
為什麼要自訂404頁面
在訪問時遇到上面這樣的404錯誤頁面,我想99%(未經調查,估計資料)的使用者會把頁面關掉,使用者就這樣悄悄的流失了。如果此時能有一個漂亮的頁面能夠引導使用者去他想去的地方必然可以留住使用者。因此,每一個網站都應該自訂自己的404頁面。
NGINX下如何自訂404頁面
IIS和APACHE下自訂404頁面的經驗介紹文章已經非常多了,NGINX的目前還比較少,湊巧我的幾台伺服器都是NGINX的,為瞭解決自家的問題特地對此作了深入的研究。研究結果表明,NGINX下配置自訂的404頁面是可行的,而且很簡單,只需如下幾步:
1.建立自己的404.html頁面
2.更改nginx.conf在http定義地區加入:
fastcgi_intercept_errors on;
3.更改nginx.conf在server 地區加入:
error_page 404 = /404.html
4.測試nginx.conf正確性:
/opt/nginx/sbin/nginx –t
如果正確應該顯示如下資訊:
the configuration file /opt/nginx/conf/nginx.conf syntax is ok
configuration file /opt/nginx/conf/nginx.conf test is successful
5.重啟nginx
kill -HUP `cat /opt/nginx/nginx.pid `
設定檔執行個體:
……
http
{
include mime.types;
default_type application/octet-stream;
charset gb2312;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
fastcgi_intercept_errors on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-網頁特效 text/css教程 application/xml;
gzip_vary on;
#limit_zone crawler $binary_remote_addr 10m;
#65的配置資訊
server
{
listen 80;
server_name www.65.la 65.la *.65.la;
index index.html index.htm index.php教程;
root /opt/www/65;
location ~ .*.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
error_page 404 = /404.html;
#502 等錯誤可以用同樣的方法來配置。
error_page 500 502 503 504 = /50x.html;
ocation = /50x.html {
root html;
}
log_format 65 ‘$remote_addr – $remote_user [$time_local] "$request" ‘
‘$status $body_bytes_sent "$http_referer" ‘
‘"$http_user_agent" $http_x_forwarded_for’;
access_log /opt/nginx/logs/65.log 65;
}
……
注意事項:
1.必須要添加:fastcgi_intercept_errors on; 如果這個選項沒有設定,即使建立了404.html和配置了error_page也沒有效果。
fastcgi_intercept_errors
文法: fastcgi_intercept_errors on|off
預設: fastcgi_intercept_errors off
添加位置: http, server, location
預設情況下,nginx不支援自訂404錯誤頁面,只有這個指令被設定為on,nginx才支援將404錯誤重新導向。這裡需要注意的是,並不是說設定了fastcgi_intercept_errors on,nginx就會將404錯誤重新導向。在nginx中404錯誤重新導向生效的前提是設定了fastcgi_intercept_errors on,並且正確的設定了error_page這個選項(包括文法和對應的404頁面)2.不要出於省事或者提高首頁權重的目的將首頁指定為404錯誤頁面,也不要用其它方法跳轉到首頁。
3.自訂的404頁面必須大於512位元組,否則可能會出現IE預設的404頁面。例如,假設自訂了404.html,大小隻有11個位元組(內容為:404錯誤)。用如下兩個不存在的地址去訪問: