I have a very simple 5 page static site.
Instead of a 404, I want to do a 301 redirect to the index page whenever a visitor accesses a page that doesn't exist. I tried something like this:
ErrorDocument 404 404.htm
redirect 301 404.htm index.htm
but that doesn't seem to work. How would I get it to do a 301 redirect to the index page?