Skip to content

Instantly share code, notes, and snippets.

@korzo
Created December 14, 2010 19:37
Show Gist options
  • Save korzo/740950 to your computer and use it in GitHub Desktop.
Save korzo/740950 to your computer and use it in GitHub Desktop.
Redirect all pages from old domain to new domain with .htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com$ [NC]
RewriteRule .* http://www.new.com%{REQUEST_URI} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment