• Seeking Advice: How Can I Set Up Link Redirection on My Website? Want Users to Experience Smooth Transitions with ‘You Are Being Redirected to Store’ Message.

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    Redirect from where? One solution does not involve WP at all (at least until the destination page gets requested). First create a simple static .html page with a refresh meta tag. Sample HTML:

    <!DOCTYPE html>
    <html>
      <head>
        <meta http-equiv="refresh" content="7; url='https://www.your-domain.com/store/'" />
      </head>
      <body>
        <p>You will be redirected to our store soon!</p>
      </body>
    </html>

    In your .htaccess file, set up a redirect rule from where ever to this static .html file. The file then redirects to the final destination.

Viewing 1 replies (of 1 total)

The topic ‘redirected link store’ is closed to new replies.