Files
hnsau/templates/redirect.js
Nathan Woodburn 202455fd2e
Some checks failed
Build Docker / Build Image (push) Failing after 41s
feat: Add docker image
2024-01-11 18:22:20 +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");
}