What do I need to place in the .htaccess file to redirect every page in a site to the index page?
If I try something like:
RewriteRule .*$ /index.html [L,R=301]
and I visit the home page will the server just drop into an infinite loop of redirecting itself to the index.html?
Maybe something like this to stop the loop:
RewriteCond %{REQUEST_FILENAME} !index.html$ RewriteRule .*$ /index.html [L,R=301]
Sorry, you must be a member to post to a conversation. Either
log in or
sign up
to get involved.