Click to See Complete Forum and Search --> : Automatic page transfer script


chrisp
05-02-2003, 08:57 PM
My website dosn't allow direct linking so I have to send people through another page first
I'm trying to find a script that will automatically send people to the second page when they enter the first one and believe it or not i'm really having a hard time finding it
could someone please help
thanx in advance

khalidali63
05-03-2003, 06:47 AM
enter these lines of code in between the head tags

<script teyp="text/javascript">
window.location.href = "next pages url";
</script>

chrisp
05-05-2003, 12:10 AM
Thanx,
I new it was simple but I was really having a hard time finding it.
your reply is appreciated

AdamGundry
05-05-2003, 02:51 AM
Wouldn't this be a better way of doing it, as it doesn't require Javascript:

<meta http-equiv="refresh" content="0; URL=http://www.example.com">

This can still be disabled in the browser, but is more likely to succeed than Javascript, which will fail for around 10% of users.

Adam