Skip to content

Instantly share code, notes, and snippets.

@amccarty
Created September 30, 2016 15:02
Show Gist options
  • Select an option

  • Save amccarty/2148ff269b3f62f1fcf0748ab9811f63 to your computer and use it in GitHub Desktop.

Select an option

Save amccarty/2148ff269b3f62f1fcf0748ab9811f63 to your computer and use it in GitHub Desktop.
apache redirect http to https
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule !/status https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment