need help

davidflatman

Baseband Member
Messages
47
redirect page help, plz

i really need to know how much bandwidth per visit a html redirect page like this would use:
Code:
<HTML>
<HEAD>
<!-- Send users to the new location. -->
<TITLE>redirect</TITLE>
<META HTTP-EQUIV="refresh" 
CONTENT="0;URL=http://www.davidflatman.cjb.cc/forum">
</HEAD>
<BODY>
The Forum is now hosted on a new server please wait.<p>If you aren't forwarded 
to the forum,
<a href="http://www.davidflatman.cjb.cc/forum">
click here</a>. </p>
</BODY>
</HTML>
sounds like a dumb question and it probably is :p
also if there is another one that wont show a page before redirecting the page and how much bandwidth that would use per visit

basically i want a redirecting thing that takes a VERY VERY VERY VERY small bandwidth about :p
 
the file is 255 bytes. and it'll take that much bandwidth....

for very small redirects I suggest you look at 302 redirect pages for the server, these just take the request and re-direct the header... generating very little bandwidth.
 
thanks for the info :) , i have i have little or no experience in 302 redirect pages how do i go about it. how much bandwidth (how big(i think :p) would a 302 take up
and seem to find things about 302 temp redirects and 301 redirects what the difference and what should i use and most importantly, how :p
 
Back
Top Bottom