Apache - 查看 error.log 中的 HTTP 404 错误

Apache - 查看 error.log 中的 HTTP 404 错误

我正在尝试记录并阻止对我国内网页的不必要连接。我每天都会收到来自世界各地的近 200 次使用 HTTP 1.0 的连接尝试。我使用此规则将请求重定向到错误 404:

RewriteEngine On
RewriteCond %{THE_REQUEST} HTTP/1\.0$
RewriteRule ^ - [L,R=404]

我希望在我的 error.log 中看到这些 404 错误,因为我已经看到了其余的 404 错误。通过这种方式,我使用 fail2ban 在防火墙中禁止了这些 IP。我使用以下日志级别配置:

LogLevel notice core:info 

有没有办法在 error.log 中看到 modrewrite 404 错误?

相关内容