Skip to content

Instantly share code, notes, and snippets.

@karmiphuc
Forked from konklone/ssl-redirect.html
Created February 9, 2016 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karmiphuc/bc11b185abcf89495621 to your computer and use it in GitHub Desktop.
Save karmiphuc/bc11b185abcf89495621 to your computer and use it in GitHub Desktop.
Force a quick redirect to HTTPS on Github Pages for your domain (and only your domain)
<script>
var host = "YOURDOMAIN.github.io";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment