Skip to content

Instantly share code, notes, and snippets.

@fhdalikhan
Created February 11, 2019 08:40
Show Gist options
  • Save fhdalikhan/cc3d01a281791c91c4dde597ae1ffaa3 to your computer and use it in GitHub Desktop.
Save fhdalikhan/cc3d01a281791c91c4dde597ae1ffaa3 to your computer and use it in GitHub Desktop.
Redirect to https from http via apache .htaccess
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment