I'm going to develop a social network website, I want to assign each user a unique URL address Like facebook but I don not know how can I do it with PHP.
closed as not a real question by Gordon♦, hakre, Michael Petrotta, NikiC, Richard Sep 25 '11 at 7:00
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You could setup wildcard DNS and make each user have his/her subdomain: http://username.domain.com Or you could use the mod_rewrite with Apache and rewrite a url pattern that would look similar to facebook's vanity usernames: http://domain.com/username |
|||
|
|
|
lets say that you have a php system which can show the profile of a user like this
now using url_rewriting using .htaccess
this will give something like
and to make them unique like fb, just make sure to track all the current names in use and dont allow users to register with the names already used. |
|||
|
|
|
It can be easly achieved by using Zend Router: http://framework.zend.com/manual/en/zend.controller.router.html |
|||
|
|