Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 226 Bytes

force http to https.md

File metadata and controls

7 lines (7 loc) · 226 Bytes
# Forcing `https://`
# Redirect from the `http://` to the `https://` version of the URL.
# https://wiki.apache.org/httpd/RewriteHTTPToHTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]