单ErrorDocument指令捕捉所有错误(的.htaccess)指令、错误、ErrorDocument、htaccess

2023-09-02 00:41:09 作者:假笑扮从容

有什么样通配符指令捕捉一切可能的错误和处理他们在一个单一的自定义错误页?

Is there something like a wildcard directive to catch all possible errors and deal with them in a single custom error page?

ErrorDocument 404 /error.php?code=404
ErrorDocument 403 /error.php?code=403
...
ErrorDocument NNN /error.php?code=NNN #possible use of RegExp?

我知道我可能不会被处理了很多在这里自定义错误页,但我很好奇这个问题。

I know I probably won't be dealing with a lot of custom error pages here, but I'm curious about this.

推荐答案

这是不可能的。你需要有一个的ErrorDocument 指令对各状态code要处理不同的比默认的错误处理程序。

That is not possible. You need to have a ErrorDocument directive for each status code you want to handle differently than with the default error handler.