禁用404错误记录

时间:2013-11-30 12:25:10

标签: nginx

在我的配置中,我正在使用:

error_page  404  /switch;

当我浏览/ testABC时,我在日志中看到了这个错误:

open() "/usr/local/nginx/html/www/testABC" failed (2: No such file or directory)

如何禁用此错误?我目前正在使用404作为网站功能的一部分。

1 个答案:

答案 0 :(得分:39)

如果您不希望在nginx错误日志中显示404错误,则log_not_found是您要配置的指令。

默认情况下,log_not_found设置为" on"这将在主错误日志中报告文件未找到的错误。要解决这些问题,请执行以下操作:

log_not_found off;

来源:http://nginx.org/en/docs/http/ngx_http_core_module.html#log_not_found