Skip to content

Instantly share code, notes, and snippets.

@huobazi
Last active August 29, 2015 14:10
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 huobazi/f5ac253e8446230b2dd3 to your computer and use it in GitHub Desktop.
Save huobazi/f5ac253e8446230b2dd3 to your computer and use it in GitHub Desktop.
Automatic redirect from HTTP to HTTPS
if(window.location.protocol != 'https:') {
window.location.href = window.location.href.replace("http://", "https://");
}
// or
if (window.location.protocol != "https:"){
window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
}
// or
if(window.location.protocol != "https:"){
if(window.location.replace){
window.location.replace("https:" + window.location.href.substring(window.location.protocol.length));
}
else{
window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment