Page 1 of 1

Forwarding from one domain to another

Posted: Sat Oct 04, 2003 4:38 pm
by String
How did you automatically forward from ezboard's Petrazone to here?

Was it in the META tag like this that did it?

<META name="robots" content="noindex">
<META HTTP-EQUIV='Refresh' CONTENT="1;URL=http://www.thepetrazone.net">

META tag

Posted: Sun Oct 05, 2003 8:50 am
by Michael
Yup... actually not the "robots" one, the other one. You can also use it to reload any page after a certain number of seconds... so for example if you had a new ticker that needed to reload every five minutes or weather or anything that changes regularly. The 1 is one second.

Thanks!

Posted: Sun Oct 05, 2003 1:08 pm
by String
I was wondering how people do that!! I need to do that with a couple of my old pages if I can figure out how to get in.

Javascript

Posted: Mon Oct 06, 2003 7:28 am
by Michael
You can also do it using Javascript... I think you do something like:

Code: Select all

window.location="http://www.thepetrazone.net"
I'm writing that from memory, but if you wanted to add that too you could look up "window.location" on Google...