auto forward page

T

ThaiAm

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?
 
T

Trevor L.

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top