7 lines
237 B
JavaScript
7 lines
237 B
JavaScript
|
if (window.location.hostname != document.currentScript.getAttribute('domain')){
|
||
|
window.location.href = "https://" + document.currentScript.getAttribute('domain') + window.location.pathname;
|
||
|
}
|
||
|
else{
|
||
|
console.log("Already Redirected");
|
||
|
}
|