Skip to content

Instantly share code, notes, and snippets.

@garagemwp
Created July 4, 2018 21:05
Show Gist options
  • Save garagemwp/6464666240f41c6c61a65e95bba11a5e to your computer and use it in GitHub Desktop.
Save garagemwp/6464666240f41c6c61a65e95bba11a5e to your computer and use it in GitHub Desktop.
Redirecionamento 301 de http para https
#Redirection code starts
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#Redirection code Ends
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment