I have a requirement, wherein when endusers access a siteurl say , https://myOld_SP2010_Site.com/sites/xyz i would like to redirect them my new site, say https://myNEW_SPO_Site.com/sites/xyz after staying on the old site home page for few seconds.
How this can be achieved? though i tried the below code refer HERE , it is not staying for a few seconds on the old site :
<script>
    if(window.location.href == 'old_url')
   {
     window.location.href="new_url";
   }
</script>
 
    