How do I re-direct?

N

Nelson

When users enter in my website in their browser, I would like for them to automatically be re-directed to another website. I have frontpage 2003, how do I do this?
 
C

chris leeds

you can use a meta refresh, if your server can run .asp pages you can use
response.redirect but you'd have to do it on every page you'd want them to
be redirected on.

You can google for any of the above and you'll find plenty of examples.

you may be better off visiting wherever you registered the domain name and
use the "domain forwarding" feature most registrars have. that way you
won't even need hosting for the site you want to redirect people off of.

HTH

--
The email address on this posting is a "black hole". I got tired of all the
spam.
Please feel free to contact me here:
http://nedp.net/contact/
--


Nelson said:
When users enter in my website in their browser, I would like for them to
automatically be re-directed to another website. I have frontpage 2003, how
do I do this?
 
D

DI

Copy the following into the head of your document.

<meta http-equiv="refresh" content="6; url=http://www.abc.com/">

the 6 is the time in seconds before the browser forwards the user

replace www.abc.com with the URL you want it to redirect to

Also good idea to add a manual link and text - this page has moved


Nelson said:
When users enter in my website in their browser, I would like for them to automatically be
re-directed to another website. I have frontpage 2003, how do I do this?
 
Top