Files
hnsau/https.js
2022-02-05 18:47:52 +11:00

6 lines
161 B
JavaScript

if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
else{
console.log("Already Https");
}