Log in

View Full Version : Forwarding



vanbao
12-20-2005, 06:17 PM
Hi, Can some one please help me.

I am trying to make an automatic page forward. For example, when a visitor types is a url 1, there will be some codes on that page that will automatically rediret the visitor to url 2.

Thank you.

jscheuer1
12-23-2005, 08:27 AM
Example:


<head>
<meta http-equiv="refresh" content="15; url=somepage.htm">

Usage:

<meta http-equiv="refresh" content="secondsToWaitBeforeChanging; url=path/filename.ext">

You can use just a path, if it is to a directory with an index page. You can use just a filename, if it is in the same directory as the forwarding page.

vanbao
10-18-2006, 06:03 PM
Thank you so much John.