I've searched a lot in google and stackoverflow but didn't find the complete answer...
What im trying to do is:
1) Redirect all non-extension addresses to their pages. For example: home -> home.php
2) Redirect usernames to a page that searches the username and if exists, then load another page. For example: www.example.com/michael will redirect to go.php and gets "michael" and if user exsists; goes to user.php?id=michael
Its totally like facebook and twitter! Where as if you type "home" it goes to homepage and if you type your username, it goes to your profile!
How can I do such a thing?
EDIT: or maybe a .htaccess that sends anything after the first slash to a page. For example:
www.example.com/this/is/test
will be:
www.example.com/index.php?var1=this&var2=is&var3=test
and then the index.php page will decide to do what...
/homeis a fixed string. Right? If not, what's the difference betweenwww.example.com/michaelandwww.example.com/home? Both have the same structure and both hold a variable. – faa Jan 19 at 10:15profileto be redirected too, for example, and unless you are willing to have one rule for each name, it would be better to have a pattern to make a single rule for all of them, if possible. That's regarding number 1 only. Number 2 is clear. – faa Jan 19 at 10:35