auto forward page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have moved my home page and want to have an index page on old location that
automatically goes to new site address say perhaps after 5 seconds notice.
Is there a way in Frontpage that I can accomplish this?
 
ThaiAm said:
I have moved my home page and want to have an index page on old
location that automatically goes to new site address say perhaps
after 5 seconds notice. Is there a way in Frontpage that I can
accomplish this?

Paste this code into the old page, changing http://www.new.com/ to your new address
Alter 5 to some other number if you want a different period of notice

<html>
<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="5; url=http://www.new.com/">
<!-- AN alternative (no delay)
<script>
top.location.href=http://www.new.com/
</script>
-->
</head>

<body>
<p>This page has moved. Please click
<a href="http://www.new.com/">here</a>
if the new page doesn't appear in 5 seconds.</p>
</body>
</html>
 
Back
Top