Created
July 16, 2019 02:01
-
-
Save priatmoko/fb8bbe3ad16e5f9c1eb604fa722811b9 to your computer and use it in GitHub Desktop.
auto redireact http to https using htaccess
This file contains 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
#Your common configuration | |
#bellow of your common configuration add this code | |
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