Skip to content

Instantly share code, notes, and snippets.

@ml4den
Created January 13, 2017 13:12
Show Gist options
  • Save ml4den/7e5262b74f9cdeb0a690763b334486f2 to your computer and use it in GitHub Desktop.
Save ml4den/7e5262b74f9cdeb0a690763b334486f2 to your computer and use it in GitHub Desktop.
Automatic HTTPS Redirection
var loc = window.location.href+'';
if (loc.indexOf('http://')==0){
window.location.href = loc.replace('http://','https://');
}
@ml4den
Copy link
Author

ml4den commented Jan 13, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment