Forum Moderators: open
A client redirect would be a meta refresh, like:
<meta http-equiv="refresh" content="5; URL=http://some.place.else/index.html">
A HTTP (server) redirect would be something like (depending on the language):
Perl:
print "Location: [some.place.else...] \n";
PHP:
header("Location: [some.place.else...] true);
With Apache and .htaccess file you can also do a 301 redirect, like:
Redirect 301 /somedir/index.html some.place.else/index.html
I think I got that right...I'm just learning about redirects myself. I'm sure someone will correct me if I got something wrong.
Jordan