Skip to content

Instantly share code, notes, and snippets.

@discarn8
Created May 3, 2018 21:56
Show Gist options
  • Select an option

  • Save discarn8/fec8ae0c814760c5d696e6a14f83d9bd to your computer and use it in GitHub Desktop.

Select an option

Save discarn8/fec8ae0c814760c5d696e6a14f83d9bd to your computer and use it in GitHub Desktop.
js_HTTP_Redirect
<!-- beginning of HttpRedirect.htm file -->
<script type="text/javascript">
function redirectToHttps()
{
var httpURL = window.location.hostname+window.location.pathname;
var httpsURL = "https://" + httpURL ;
window.location = httpsURL ;
}
redirectToHttps();
</script>
<!-- end of HttpRedirect.htm file -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment