Jason wrote: > I need to redirect users from one site to another. What's the tag I'd need > to use to accomplish this? Thanks in advance. Redirection should be handled at the protocol level, not the do***ent level. You need to send an appropriate HTTP status code (such as 301 or 301) along with a Location header. HTTP status codes: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html Location header: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30 The most common webserver is Apache, the manual for Apache describes how to configure a redirect: http://httpd.apache.org/docs/1.3/mod/mod_alias.html#redirect -- David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/> Home is where the ~/.bashrc is