Skip to content

Instantly share code, notes, and snippets.

@daldantas
Last active July 29, 2018 21:52
Show Gist options
  • Save daldantas/9417c029e69d5282eebae91ddded790e to your computer and use it in GitHub Desktop.
Save daldantas/9417c029e69d5282eebae91ddded790e to your computer and use it in GitHub Desktop.
To force https with htaccess
RewriteEngine On
# Redirect to HTTPS WC
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
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