How to redirect traffic to a new page (post redirection)
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">