function myFunction() { //let thisurl = window.location.host; let fullurl = window.location.href; let searchstring = "gracel.johnlscott.com"; if (fullurl.includes(searchstring)) { setTimeout(function () { var newHostname = "gracedreamhomegroup.johnlscott.com"; var pathArray = window.location.pathname.split('/'); var queryparams = window.location.search; var newPath = ""; for (i = 1; i < pathArray.length; i++) { newPath += "/"; newPath += pathArray[i]; } var newURL = "https://" + newHostname + newPath + queryparams; window.location.replace(newURL); }, 0); } } myFunction();