Files
hnsau/redirect.js
Nathan Woodburn 61bc95ede5 Create redirect.js
2022-02-03 22:04:17 +11:00

6 lines
249 B
JavaScript

if (window.location.hostname != document.currentScript.getAttribute('domain')){
window.location.href = "http://" + document.currentScript.getAttribute('domain') + window.location.pathname;
}
else{
console.log("Already Redirected");
}