Redirect Surfers to Another Page
Here are two ways to automatically transfer visitors to another page.
- The first method, (and the method I prefer) is by using a meta tag. Yes, meta tags
have functions other than marketing. It will look like this:
<META HTTP-EQUIV=REFRESH CONTENT="10;URL=http://domainname.com/page.htm">
The number "10" represents the number of seconds before the page will be transferred. Insert the destination address in the designated location.
- The second method is javascript. All you have to do is cut and paste the following code:
<script language="JavaScript">
<!--
var time = null
function move() {
window.location = 'http://destination.com'
}
//-->
</script>
</head>
<body onload="timer=setTimeout('move()',5000)">
Change "http://destination.com" to your destination page. The number "5000" represents the number of milliseconds before the page will be transferred. (1000 milliseconds
equals one second). You may change this number to meet your needs.
That's all there is to it!
Give it a try!