Forum Moderators: phranque
Is this an .htaccess or apache config issue?
Here's my .htaccess
DirectoryIndex index.html
ErrorDocument 403 /blocked/not-allowed.html
ErrorDocument 404 /page-not-found.html
What's in your server error log when you get a 500 Server Error?
Does /page-not-found.html exist, and is it truly a static page? If not, look at the script used to generate it.
What happens if you directly request http://www.example.com/page-not-found.html ?
Is the use of ErrorDocument allowed on your server? The setting of AllowOverride [httpd.apache.org] FileInfo affects this.
Jim