WebSite X5Help Center

 
Giulio V.
Giulio V.
User

Cannot do Redirect in /index.html page  en

Author: Giulio V.
Visited 831, Followers 1, Shared 0  

As part of ongoing SEO, my SEO guy and I are setting up 301 redirects on different pages of my site.

My SEO guy recommends that we setup a redirect on my /index page to the homepage. While all of my other 301 redirects work, whenever he setups a 301 redirect on my /index page, it fails and breaks the site. The only way to bring the site back online is to re-enable this /index page.

How do I fix this?

Posted on the
2 ANSWERS - 1 USEFUL
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

The index.html is normally the home page, so what's the point of a redirect?

Read more
Posted on the from Daniel W.
Ro Partner
Ro Partner
User

.htaccess:

RewriteEngine On
RewriteRule ^index\.html$ / [R=301,L]
RewriteRule ^(.*)/index\.html$ /$1/ [R=301,L]

Read more
Posted on the from Ro Partner