Forum Moderators: phranque
I've uploaded a .htaccess to redirect browser errors to the right error pages, but all I get now is '500 Internal Server Error'
Is there a place where I can verify the file and debug it?
ATM i have in the .htaccess the following
-----------------------------
ErrorDocument 404 [somedomainurl.com...]
ErrorDocument 403 [somedomainurl.com...]
-----------------------------
There is more errors inserted intot he file but the list is too long to post here.
Any ideas why the .htaccess file would cause the 500 error?
Many thx
Only has to be local for 401 documents.
My best suggestion is to add one line at a time - find which one gives you the 500 and look more closely at it - post here if it's not obvious. Good luck.
h**p://httpd.apache.org/docs/misc/FAQ.html#htaccess-work
[edited by: coopster at 2:42 pm (utc) on Feb. 4, 2004]
Yes - but it says that if it is not set then the .htaccess file is completely ignored... which would not explain your 500.
Meaning remove .htaccess and start debugging again :)
A "fine" point here, but an important one. You must use a local path if you wish the server to return the specified error code to the client. If you use an external redirect (by specifying a canonical URL), then the server will return a 302-Found status to the client, thus hiding the problem from the client. This can be a huge disaster if the client is a search engine spider. If you care about search engine rankings and listings, don't specify an external URL!
Jim
AllowOverride [httpd.apache.org] must be set to "All" or at least to "FileInfo" to allow you to use any directives which modify the URL. It is a server configuration setting, and many hosting companies don't trust you to do redirects correctly, so they leave it off to save on support costs. Ask first, then change hosts if no help is offered.
Jim