Skip to content

Instantly share code, notes, and snippets.

@onemanparsons
Last active May 21, 2021 12:07
Show Gist options
  • Save onemanparsons/c888863344274aa8e48b65c0dc90e3ce to your computer and use it in GitHub Desktop.
Save onemanparsons/c888863344274aa8e48b65c0dc90e3ce to your computer and use it in GitHub Desktop.
Redirect http to https using .htaccess
RewriteEngine On
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