I'd appreciate the help. I would like to know how can i set up the index page and all subsequent pages like this http://mysite.com/smileys/ . -not folders, but rather that when i type mysite.com in the browser..the address will be mysite.com/smileys/ as opposed to the regular index page now which is mysite.com(mysite.com/index.php) for example if you notice the index page redirects to the ......org/hi5.php thanks
Well, if you're working in php, just use header("Location: http://mysite.com/wherever.html"); javascript is just if(parent.location !== "http://mysite.com/wherever") { parent.location = "http://mysite.com/wherever"; }