quick html how to make a site redirect?

gittyup

Diamond Member
Nov 7, 2000
5,036
0
0
Don't know about DW, but....

<meta http-equiv=&quot;refresh&quot; content=&quot;4;url=http://new.site/&quot;>
 

ArkAoss

Banned
Aug 31, 2000
5,437
0
0
say what there gittyup??

umm I'm kinda following ya....


-SMIz, We used to host a site, for free, but some engines still point to our files, but they have a much better site up, someplace else, so I need to change the index.html we host to redirect instantly to their new site..
 

SmiZ

Senior member
Oct 6, 2000
869
0
0
The link I sent you to the java script should work, but gittyup's idea is better.




<< <meta http-equiv=&quot;refresh&quot; content=&quot;4;url=http://new.site/&quot;> >>



The meta http-equiv=&quot;refresh&quot; tells the browser to refresh with &quot;url=http://new.site/&quot; that as an address. So you'd put wherever you want them redirected to in place of http://new.site/

I believe the 4 in front of the address is the time period the browser is supposed to wait before redirecting. Correct me if I'm wrong of course.