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.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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.

link|improve this answer
Alright, kind of figured - I tried using some of the "tricks" usable on RewriteRule directives, but they only gave 500 errors. Thanks for clarifying. – Mike Valeriano Apr 10 '10 at 11:17
feedback

Rather than passing in the error status code, you can pick it up in your script via the REDIRECT_STATUS environment variable (set by Apache). See: http://httpd.apache.org/docs/2.0/custom-error.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.