Last active
March 13, 2019 15:27
-
-
Save EastSideCode/be3f55bb7dfd40dcd3ef6cbb0cfa4b61 to your computer and use it in GitHub Desktop.
Force HTTS and www
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
# force HTTPS and www. | |
RewriteEngine On | |
RewriteCond %{HTTPS} off [OR] | |
RewriteCond %{HTTP_HOST} !^www\. [NC] | |
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC] | |
RewriteRule ^ https://www.%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