Skip to content

Instantly share code, notes, and snippets.

@Godoy
Created December 2, 2014 18:23
Show Gist options
  • Save Godoy/995b7fe28747ac04695e to your computer and use it in GitHub Desktop.
Save Godoy/995b7fe28747ac04695e to your computer and use it in GitHub Desktop.
Redirecionamento permanente (31) com www para sem www
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment