Socialify

Folder ..

Viewing sslRedirect.js
5 lines (5 loc) • 199.0 B

1
2
3
4
5
const currentURL = window.location.href;
if (!currentURL.includes("https") && !currentURL.includes("localhost")) {
  const newURL = currentURL.replace("http", "https");
  window.location = newURL;
}