I wish to redirect www.example.com/index.html
to
but I do not wish to redirect all addresses with index.html like
www.example.com/folder/index.html
to
So, just to redirect first index.html page to root of site.
I wish to redirect www.example.com/index.html
to
but I do not wish to redirect all addresses with index.html like
www.example.com/folder/index.html
to
So, just to redirect first index.html page to root of site.
Add the following to the .htaccess file in the root folder of www.example.com
RewriteEngine On
RewriteBase /
# redirect html pages to the root domain
RewriteRule ^index\.html$ / [NC,R,L]