Skip to content

Instantly share code, notes, and snippets.

View brunocmoraes's full-sized avatar

Bruno C. Moraes brunocmoraes

View GitHub Profile
@brunocmoraes
brunocmoraes / .htaccess
Created February 10, 2020 19:20
Generic redirect from http to htaccess (without set domain)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>