This is a pure HTML trick. Redirect the traffic from a webpage to another one is useful in cases you want to rename a page. This is a bad idea as other content might refer to the page you want to rename.

For example you have your page A (old) and your new page B. Instead of renaming page A, create a new page B and use this script on page A to redirect traffic on page B.

1) How to:

Create an HTML card and use this script below:

The content on: https://firepress.org/en/oldpage/
has moved here: https://firepress.org/en/newpage/

(You will be redirected automatically in few seconds.)

<script type="text/javascript">
      window.location.href = "https://firepress.org/en/newpage/"
</script>

2) SEO ignore the old page

In the post head code injection, add:

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

source



You've successfully subscribed to FirePress
Welcome back! You've successfully signed in.
Great! You've successfully signed up.
Success! Your account is fully activated, you now have access to all content.