Link to home
Start Free TrialLog in
Avatar of djclarkson
djclarksonFlag for Australia

asked on

Redirect site using mod_rewrite

I have a webforum and im moving hosts. The new host is setup and live, and the old is closed to posting to avoid db merge issues.

I want to initiate DNS changes, but would prefer to get the ball rolling immediately then have users receive a 'site is down for DNS changes' or similar.

I looked at mod_rewrite, but cant figure out how to redirect an entire site to another host (by its IP).

Any suggestions?
Avatar of ravenpl
ravenpl
Flag of Poland image

into the .htaccess file

RewriteEngine On
RewriteRule .* http://1.2.3.4%{REQUEST_URI} [L,R]
ASKER CERTIFIED SOLUTION
Avatar of ravenpl
ravenpl
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That would redirect forever if 1.2.3.4 is on the same server, wouldn't it?

You may have to do a conditional IP check using mod_rewrite.
Ah, new host means different server. Misread that, sorry.