Skip to content

Instantly share code, notes, and snippets.

@tobiaslidstrom
Last active June 3, 2019 22:02
Show Gist options
  • Select an option

  • Save tobiaslidstrom/6596c851c7b5765ea1a63bdd783ef03c to your computer and use it in GitHub Desktop.

Select an option

Save tobiaslidstrom/6596c851c7b5765ea1a63bdd783ef03c to your computer and use it in GitHub Desktop.
Redirect domain to HTTPS
RewriteEngine on
# Redirect domain to HTTPS
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment