Forum Moderators: phranque
Yours Faithfully
Nicolás Reggiani
Grupo Todo
Buenos Aires - Argentina
Can you describe why you need so many 404 handlers?
A far more friendly approach would be to simply redirect visitors from the old and missing URLs to replacement URLS using a 301-Moved Permanently redirect.
Add a line to .htaccess for each missing file like this:
RedirectPermanent /old_path_to_file http://your_site.com/new_path_to_file
If more files need to be redirected, you might want to investigate mod_rewrite [httpd.apache.org].
I have never tried to declare more than one ErrorDocument 404 per site. Maybe someone who has done so will be of more help.
Jim