View Full Version : Redirect


Bizzy
05-13-2004, 10:17 AM
I would like to redirect my homepage from my main directory to a subdirectory.
Example. www.mydomainname.com is my home directory, but I want when people type that in their browzer for it to take them else where, like this.....www.mydomainname.com/News/index.html. Is this possible?
Does anyone have a code?
Thank you in advance.

chrishawthorne
05-13-2004, 11:03 AM
Try this:
http://www.dynamicdrive.com/dynamicindex9/bredirect.htm
or http://javascript.internet.com/navigation/timed-redirect.html

pb&j
05-13-2004, 02:21 PM
or you can put a blank html page for your main index and just put a redirect meta tag in...
<meta http-equiv="refresh" content="1;url=http://www.mydomainname.com/News/index.html">
just replace the url at the end part.

or there in an htaccess way of doing a redirect which can be explained if you want to go in that direction.

nesianmysticfan
05-13-2004, 08:35 PM
I am not advertising, because its not my site, is pb&j's but theres a .htaccess totorial at http://www.htmlite.com/HTA010.php if you want the .htaccess redirect.