>===== Original Message From Johnno <[EMAIL PROTECTED]> ===== >How do i redirect a domain name say... > blahblah.com to http://tripod.com/members/site/index.html >for example?? > >or this is done in the dns?? > >Many Thanks, >Johnno
You could put something like the following: <head> <meta http-equiv="refresh" content="1; URL=http://foo.com/index.html"> </head> in index.html on blahblah.com that'll tell the browser to reload the page (using the new URL supplied) after 1 second. Not sure if you can use 0 seconds (ie. immediate) or not, but try it. That's just what I do - there's probably a better solution, but hey - it works. Hope that helps in your situation. =) Regards, Gareth.
