Page Redirect

You can use a <META> tag in the <HEAD> section of your HTML document. The <META> tag on this page looks like:

Code:
    <META HTTP-EQUIV="Refresh"
          CONTENT="5; URL=html-redirect.html">

The "5" means to wait 5 seconds before redirecting. The "html-redirect.html" after "url=" is the URL of the page to which to redirect.

Or if you are using apache you can do it in the .htaccess see here for examples.
 
Back
Top Bottom