01 Nov
HTML Redirect Page
It’s easy to redirect your web site with html. Just add the redirect meta tag to your header like this:
<code>
<meta http-equiv=”REFRESH” content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”></HEAD>
</code>
content=”0; may be changed to the number of seconds you want the browser to wait before redirecting.

