Hi,
Ok, was seeing in some website people have page like this..
Title of the page: WebAPP, name whatever
http://www.mypage.com/webapp.php?=1
and i don't know how they change to this
http://www.mypage.com/webapp/namewhatever
How i can do this?
php question
Moderator: General Moderators
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: php question
I think you mean "clean URLs". You can create directories and put index.php scripts within the directories, or you can use mod_rewrite.
(#10850)
Re: php question
You're looking for a request router/mapper (which can be done entirely in php) or you can use mod_rewrite rules in a .htaccess file if you're using apache web server (probably the easier of the two routes).
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
Re: php question
Thanks, now im begin to understand..scottayy wrote:You're looking for a request router/mapper (which can be done entirely in php) or you can use mod_rewrite rules in a .htaccess file if you're using apache web server (probably the easier of the two routes).
Can you give me some examples?