Forum Moderators: phranque
RedirectMatch 301 /$ [domain2.com...]
RedirectMatch 301 /index.php$ [domain2.com...]
RedirectMatch 301 /partners.htm$ [domain2.com...]
But now I need to do this with a large site with hundreds of pages.
Is there a simpler way to do this, since the page names never change? Thanks all!
Try the following on for size:
RedirectMatch 301 /(.*)$ [domain2.com...]
That should redirect all traffic to the domain2.com site, with the same page name.