Skip to content

Instantly share code, notes, and snippets.

@pradeepdotco
Created December 3, 2015 17:57
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/d53a4bb5d3f75bb59813 to your computer and use it in GitHub Desktop.
Save pradeepdotco/d53a4bb5d3f75bb59813 to your computer and use it in GitHub Desktop.
301 Redirect Pradeep.co to PradeepSingh.com with .htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^pradeep\.co$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pradeep\.co$
RewriteRule (.*)$ https://pradeepsingh.com/$1 [R=301,L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment