显示404而不是403

时间:2018-05-31 09:17:36

标签: apache .htaccess http-status-code-404 cgi-bin errordocument

我正在尝试显示404错误而不是403,我已经能够通过以下行显示:

ErrorDocument 403 /404.html

但它没有应用于/ cgi-bin

请引导我说明它未应用于cgi-bin的原因以及如何为此路径显示404而不是403。

感谢您,对由此给您带来的任何不便表示歉意。

1 个答案:

答案 0 :(得分:0)

尝试将以下行添加到cgi脚本配置中:

RewriteCond !%{ENV:REDIRECT_STATUS} "=403"
RewriteRule (.*) /path/to/404.html [L]