Skip to content

Instantly share code, notes, and snippets.

@sushiljainam
Created June 15, 2021 07:16
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 sushiljainam/8c1f8681cb654006088120a7651cbe7d to your computer and use it in GitHub Desktop.
Save sushiljainam/8c1f8681cb654006088120a7651cbe7d to your computer and use it in GitHub Desktop.
https redirect via browser
if (location.protocol !== 'https:') {
location.replace('https:'+location.href.substring(location.protocol.length));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment