Using “META” Tag in HMTL HEAD to Redirect Pages
It is quite simple to redirect pages using the “meta” tag in HTML head, I just give the example to redirect the page to http://fclose.com after 1 second.
<html>
<head>
<meta http-equiv="Refresh" content="1; url=http://fclose.com/">
</head>
<body>
This page is redirected to: <a href="http://fclose.com/">fclose.com</a>.<br />
</body>
</html>