<meta http-equiv=Refresh"
content="5;url=http://www.example.com/pagename.htm"> should work.
Or use Javascript
:
<script type="text/javascript">
window.location.href="http://www.example.com/pagename.htm"
</script>
Or use both.
It is best to pause before redirecting to tell users what is about to
happen, especially when changing the domain. Also add a manual link
<a href="http://www.example.com/pagename.htm>If not redirected in 5
seconds, click here</a>
in case both methods fail.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
"Rumor" <(E-Mail Removed)> wrote in message
news:630408CA-C03A-42E7-B4D7-(E-Mail Removed):
> I want to have one page on website "www.xyz.com" that I would like to
> automatically go to another page on a "www.123.com".
>
> I have tried HTTP-EQUIV REFRESH but it will only allow it to be a page in
> the same site.
>
> What am I doing wrong, Can someone offer other suggestions