I'm using 1.3.41, and I have an httpd.conf that looks like:
...
# "Global" 404 error document
ErrorDocument 404 /something.cgi
...
SetHandler perl-script
PerlHandler Some::Module
ErrorDocument 404 default
Basically if the handler for /xyz returns a 404 error, I want the
Apache's default e
Hi everyone,
I'd like to have:
ErrorDocument 404 /some/local/url
perform a hard redirect (i.e. it actually sends a 302 back to the client.)
I don't want to specify a full url like this:
ErrorDocument 404 http://some.host:/some/local/url
because I don't want to have to inject the host, por