Skip to content

Instantly share code, notes, and snippets.

@m5wdev
Created March 25, 2019 19:05
Show Gist options
  • Save m5wdev/b9719a6f9ec9b26ec3e5125035d7824c to your computer and use it in GitHub Desktop.
Save m5wdev/b9719a6f9ec9b26ec3e5125035d7824c to your computer and use it in GitHub Desktop.
.htaccess redirect from http:// to https://
# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment