I changed a bulky, complex website into a small one-page website, so users need to be redirected from 404s to index.html.
I put this in .htaccess:>
Try below code :
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteRule . / [L,R=301] ErrorDocument 404 /index.php
It's any 404 url to your home page.
404 url
home page.