4

I have just merged two websites. Site A is now merged with site B.

Site A has got a .htaccess file which redirects all of the content to the new domain where site B is hosted.

RewriteRule (.*) http://www.siteb.com/$1 [R=301,L]

It is working perfectly, however, I need the homepage of site A not to redirect.

What do I need to add to the code above to make that happen?

richelliot
  • 588
  • 2
  • 10
  • 30
  • What are the URL variations of the homepage, as in `/` or `/index.html` or `/index.php`? We need to know all of them to prevent them from applying in the more general rule. – Michael Berkowski Jul 26 '16 at 15:53

1 Answers1

6

Just change .* to .+ to make sure your regex pattern isn't matcinng landing page:

RewriteRule (.+) http://www.siteb.com/$1 [R=301,L,NE]
anubhava
  • 761,203
  • 64
  • 569
  • 643