I’ve a doubt. How can I configure my application to use http://www.mysite.com/myfolder instead of http://www.mysite.com/myfile.php?
I need to a create a profile page for every user registered to my PHP application but it’s not so clear how can I do that. I’ve seen it’s possibile with page frame, but, if possible, I prefrer don’t use it.
Thanks for the suggestions!
cheers,
Andrea
you should check out
mod_rewrite. Your real url might be http://www.mysite.com/somename.php. But mod_rewrite can make the display url be http://www.mysite.com/somename/For your user profiles, let the url be something like http://www.mysite.com/user.php?user_id=x and the display url be http://www.mysite.com/user/x/