服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - Nginx - 为Nginx自定义404,502错误页面的方法

为Nginx自定义404,502错误页面的方法

2019-10-10 11:37Nginx教程网 Nginx

为Nginx自定义404,502错误页面的方法,需要的朋友可以参考下。

首先打开nginx.conf文件,在fastcgi_temp_file_write_size 128k; 下面添加 

fastcgi_intercept_errors on;注意,包括;号 

然后在需要定义的站点的里面添加 

error_page 404 = /404.htm;
例如: 

复制代码代码如下:


server 

listen 80; 
server_name www.zzvips.com; 
index index.html index.htm index.php; 
error_page 404 = /404.htm; 
include location.conf; 
root /home/www/logs; 


记得404页面放在站点的跟目录下… 

测试配置 
/usr/local/nginx/sbin/nginx -t 

没错误就重启nginx 
/etc/init.d/nginx restart 

BTW,其他页面也是这样定义 

error_page 502 = /502.htm;

延伸 · 阅读

精彩推荐