Skip to content

Instantly share code, notes, and snippets.

@homerjam
Created May 14, 2015 14:48
Show Gist options
  • Save homerjam/394a3ba39e8848051195 to your computer and use it in GitHub Desktop.
Save homerjam/394a3ba39e8848051195 to your computer and use it in GitHub Desktop.
Redirect old domain to new domain via proxy
# .htaccess for old domain
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP:X-FORWARDED-HOST} !(.*)newdomain(.*) [NC]
RewriteRule (.*) http://newdomain.com/$1 [R=301,L]
# .htaccess for new domain
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://olddomain.com/$1 [P,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment