Skip to content

Instantly share code, notes, and snippets.

@fernandiez
Created March 21, 2017 13:18
Show Gist options
  • Save fernandiez/73e18f8524c2a94607632388383c7e86 to your computer and use it in GitHub Desktop.
Save fernandiez/73e18f8524c2a94607632388383c7e86 to your computer and use it in GitHub Desktop.
Redirect from old domain to new domain
# Redirect from old domain to new domain
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domainold.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domainold.com$
RewriteRule (.*)$ http://www.domainnew.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment