Skip to content

Instantly share code, notes, and snippets.

@zakelfassi
Created December 21, 2013 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakelfassi/8072073 to your computer and use it in GitHub Desktop.
Save zakelfassi/8072073 to your computer and use it in GitHub Desktop.
Super PHP site redirection.
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^OLD_SITE.com [nc]
rewriterule ^(.*)$ http://NEW_SITE.com/$1 [r=301,nc]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment