I have removed the blog from my domain and put a simple index.html instead. How do I redirect all the incoming traffic so that it does not show a 404 error, but redirects to the index?
I tried this, but it loops...
RewriteEngine on
RewriteRule ^(.*)$ /index.html [L,R=301]
Try:
As you mentioned that this doesn't work, I'd try:
index.html is a general default file name, so there might be rules that are on the server level, not in your .htaccess. That depends on the server setup, though.
Try adding the
at the very top and give it a try.