Darren,
The easy way to do this is to set up a custom 404 page in Apache using the .htaccess file
An entry like this will do what you want
ErrorDocument 404 /error.html
Where error.html is the page you want them to go to instead of seeing the standard 404 error page.
Todd