Using _redirect rules, how can you redirect all 404’s to the index page?
I don’t have a 404.html page, but I’d like to just simply redirect all the 404 to the main index page.
I’ve read the docs on https://docs.netlify.com/routing/redirects/redirect-options/#http-status-codes to no success. I tried to use /* /index 404
but it only shows the index page without changing the URL.
So if I were to go on mysite.com/nonexistentpage
with the _redirect rule above in place, it will just go to mysite.com/nonexistentpage
but it will show the contents of the index page. I would like it to make it go to mysite.com/
instead.