nginx自定义500404错误页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx自定义500404错误页面相关的知识,希望对你有一定的参考价值。
1,首先在http添加以下内容
http{
fastcgi_intercept_errors on;
}
2,server中添加以下内容:
注意路径
error_page 500 502 503 504 = /500.html;
location /500.html {
internal;
}
error_page 404 /404.html;
location /404.html {
internal;
}
本文出自 “crazy_sir” 博客,请务必保留此出处http://douya.blog.51cto.com/6173221/1853577
以上是关于nginx自定义500404错误页面的主要内容,如果未能解决你的问题,请参考以下文章