Go your web host control panel and look for htaccess file in your domain root folder.
try adding below code to your .htaccess file.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . / [L,R=301]
Above code would redirect any 404 error to your website homepage.