Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save evemilano/e46e424bd651d3302dce to your computer and use it in GitHub Desktop.

Select an option

Save evemilano/e46e424bd651d3302dce to your computer and use it in GitHub Desktop.
Redirezionare tutte le richieste al dominio senza ‘www’
RewriteEngine on
# Redirect to domain without www.
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule .* http://%1%{REQUEST_URI} [R=301,L]
# Same for HTTPS:
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule .* https://%1%{REQUEST_URI} [R=301,L]
@evemilano
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment