Skip to content

Instantly share code, notes, and snippets.

@caugner
Created November 20, 2014 21:00
Show Gist options
  • Save caugner/7cfa53efd37441c7a7a3 to your computer and use it in GitHub Desktop.
Save caugner/7cfa53efd37441c7a7a3 to your computer and use it in GitHub Desktop.
Force HTTPS in Apache HTTPD
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment