Skip to content

Instantly share code, notes, and snippets.

@bob-moore
Created May 31, 2016 13:15
Show Gist options
  • Save bob-moore/56a88a44ec6201f827cf8756a5cc4fb4 to your computer and use it in GitHub Desktop.
Save bob-moore/56a88a44ec6201f827cf8756a5cc4fb4 to your computer and use it in GitHub Desktop.
.htaccess Code Samples
## Permanently Redirect Entire Domain
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.net/$1 [L,R=301,NC]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment