nginx_error

nginx的配置文件中没有使用负载和fastcgi时,error_page是正常

使用了fastcgi和proxy_pass 功能时,error_page功能不生效!在配置文件中加一句:fastcgi_intercept_errors on,error_page功能生效!

fastcgi_intercept_errors文档描述:This directive determines whether or not to transfer 4xx and 5xx errors back to the client or to allow Nginx to answer with directive error_page.

你可能感兴趣的:(nginx)