Skip to content

Instantly share code, notes, and snippets.

@priatmoko
Created July 16, 2019 02:01
Show Gist options
  • Save priatmoko/fb8bbe3ad16e5f9c1eb604fa722811b9 to your computer and use it in GitHub Desktop.
Save priatmoko/fb8bbe3ad16e5f9c1eb604fa722811b9 to your computer and use it in GitHub Desktop.
auto redireact http to https using htaccess
#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