Skip to content

Instantly share code, notes, and snippets.

@pradeepdotco
Created December 3, 2015 17:47
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 pradeepdotco/7a2b6952218e3ace9d10 to your computer and use it in GitHub Desktop.
Save pradeepdotco/7a2b6952218e3ace9d10 to your computer and use it in GitHub Desktop.
Redirect 301 old website to a new website with .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^olddomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.olddomain\.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment