vote up 0 vote down star

We have Apache serving a set of files from a particular directory. If a file requested in that directory does not exist, can I make Apache return a default file - instead of a 404? If so, how?

flag

0% accept rate

3 Answers

vote up 2 vote down

Be careful returning non-404s for any random URI request. It may impact your Google rankings if they notice it and consider it part of a link farm or other such blackhat SEO technique.

link|flag
1  
+1 for being interesting and relevant but in my personal experience I've never seen Google slammer my sites for random 404's. Has it happened to anyone? – Frankie Nov 4 at 16:11
Article on it: gsitecrawler.com/articles/error-404-200.asp/… – ceejayoz Nov 4 at 16:17
vote up 2 vote down

What kind of file? Is it a static file? With Apache you can set custom error pages.

link|flag
vote up 4 vote down

This can be achieved making use of .htaccess.

Check this WebReference article on the topic.

Basically you only need a file name .htaccess in your directory which contains

ErrorDocument 404 /YourCustomErrorPage.html

Of course any other file can be served too.

link|flag

Your Answer

Get an OpenID
or

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