Advanced SEO
Advanced SEO

Reputation: 387

Redirect www.mysite.com/index.html to www.mysite.com/ with .htaccess file

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

to

www.mysite.com/

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

www.mysite.com/folder/index.html

to

www.mysite.com/folder/

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

Upvotes: 0

Views: 10718

Answers (1)

Ulrich Palha
Ulrich Palha

Reputation: 9539

Add the following to the .htaccess file in the root folder of www.mysite.com

RewriteEngine On
RewriteBase /

# redirect html pages to the root domain
RewriteRule ^index\.html$ / [NC,R,L]

Upvotes: 14

Related Questions