Skip to content

Instantly share code, notes, and snippets.

@LaboratorioEfe5
Created August 5, 2014 20:14
Show Gist options
  • Save LaboratorioEfe5/d4ac63683fdf0fd19e8b to your computer and use it in GitHub Desktop.
Save LaboratorioEfe5/d4ac63683fdf0fd19e8b to your computer and use it in GitHub Desktop.
redirigir por htaccess con y sin www
#Force non-www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment