To redirect a web page to another:
Put the following code between the <HEAD> and </HEAD> tags of the page that you want to redirect from.
<meta HTTP-EQUIV=”REFRESH” content=”0; url=https://www.abcdiamond.com/html-codes”>
The content=”0; part allows for the page to show for a number of seconds before it redirects. 0 = zero seconds, 5 would mean 5 seconds.
Nothing needs to be added to the target page.
Another option for PHP pages is:
Nothing needs to be added to the target page.
Another option for PHP pages is:
<?php
header (‘Location: https://www.abcdiamond.com/html-codes’);
?>
91.1 - 866,277
↓ Scroll down for Comments ↓