• logepoge1

    (@logepoge1)


    We want to redirect our old blog to our new blod’s HOMEPAGE. In between, we want to have a countdown page with a 10 second timer letting the user know they are being redirected. Currently using the ZEPHYR theme. Any advice would be greatly appreciated. The midpage has not been created yet.

Viewing 1 replies (of 1 total)
  • You can use Javascript to do that. The code below will automatically redirect after 10 seconds. You’ll have to adjust it further to do what you want.

    setTimeout(function () {
       window.location.href = "https://www.google.com/"; // change this URL
    }, 10000); //10000 = 10 seconds

    I would recommend not doing this at all though and simply creating your redirects with the .htaccess file or in PHP so the user simply goes directly to the new site and so search engines know about the change.

Viewing 1 replies (of 1 total)
  • The topic ‘Redirect old site to new one with countdown midpage’ is closed to new replies.