Skip to content

Instantly share code, notes, and snippets.

@shabbirbhimani
Last active December 10, 2017 05:12
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 shabbirbhimani/464940f8a0c3f253c8115ae457f417d5 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/464940f8a0c3f253c8115ae457f417d5 to your computer and use it in GitHub Desktop.
Redirect OLDDOMAIN to NEWDOMAIN
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [NC]
RewriteRule ^(.*)$ http://NEWDOMAIN.com [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment