Skip to content

Instantly share code, notes, and snippets.

View khalby786's full-sized avatar
donuts

Khaleel Gibran khalby786

donuts
View GitHub Profile
@khalby786
khalby786 / index.md
Created June 3, 2020 15:45
HTTP ----> HTTPS Redirecting

Using client-side Vanilla JS in your browser

// https://gist.github.com/youngchief-btw/d8c327ef245f2e9998997a41c7b34e70
if (location.protocol === "http:") {
  location.replace(window.location.href.replace("http:", "https:"));
}

Use Express for Node.js