Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redirecting a URL 1

Status
Not open for further replies.

jmr9999

MIS
Sep 19, 2002
18
I'm not sure this is the correct forum, but I need help pointing a URL to a different website. For example, I need " to redirect the site to " I want to say I've seen an IIS setting that accomplishes this (along with DNS registration), but it's been a while since I've come across this. Any help would be appreciated.
 
Why not put a blank page up on the site saying "Redirecting to in 5 seconds. Please update your bookmarks/favourites if applicable."
I would also put a hyperlink there in case the user has an old browser that doesn't support client autorefresh.

The following code will do the job:
Code:
<meta http-equiv=refresh content=&quot;5;url=http://www.widgets.com/&quot;>

John
 
Hi

I am not quite sure about the ramifications of pointing to the IP of or other similar layouts, but something important I forgot to mention:

The HTML code in my earlier post must go in the HEAD section of the file, preferably before any other text is, in order to work properly.
It won't work at all if it is in the Body section.

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top