const ls = [ {"old": "/webpage-components/home/row-7/awardees/my-australia-awards-story-equipped-to-make-a-difference", "new": "/aas-story/eric-arroyo"}, {"old": "/webpage-components/home/row-7/awardees/my-australia-awards-story-adventure-of-a-lifetime", "new": "/aas-story/patricia-villamin"}, {"old": "", "new": ""}, ] document.addEventListener('DOMContentLoaded', () => { changeUrl(); }); function changeUrl() { ls.forEach(l => { if (window.location.href.includes(l["old"])) { window.history.pushState({}, '', l["new"]); } }); }