Image

Imagecparker wrote in Imageapache

ErrorDocuments

I have a directory called "errordocs" just beneath my DocumentRoot.

I have a .htaccess file also just beneath my DocumentRoot.

Here's a sample from my .htaccess:

ErrorDocument 400 /errordocs/400.html
ErrorDocument 401 /errordocs/401.html
ErrorDocument 402 /errordocs/402.html
ErrorDocument 403 /errordocs/403.html
ErrorDocument 404 /errordocs/404.html


When I then visit a non-existent page, I still see the default 404 message instead of my custom message.

Any idea what's going on? I'm using Apache2 on Debian sarge.