try adding below code to your .htaccess file.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . / [L,R=301]
You need to make sure apache has 'mod rewrite' on and most web hosts do have this on by default otherwise you can ask your hosting provider if it's not working. This code will redirect all missing pages to the homepage however if you want to redirect to another page instead just replace the slash / in the final line with your web page.