Created
April 5, 2019 00:35
-
-
Save mrpatg/9b40e7a62b1ae847cb0c44915099d0e1 to your computer and use it in GitHub Desktop.
.htaccess force https
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine On | |
RewriteCond %{HTTPS} off [OR] | |
RewriteCond %{HTTP_HOST} ^www\. [NC] | |
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] | |
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment