0

I wish to redirect www.example.com/index.html

to

www.example.com/

but I do not wish to redirect all addresses with index.html like

www.example.com/folder/index.html

to

www.example.com/folder/

So, just to redirect first index.html page to root of site.

1 Answer 1

14

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]
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.