I'm currently working on a site that needs to generate a profile page for a user upon registration. I want the page to be in the format www.domain.com/username. Is it possible to do this without creating subdomains?

link|improve this question

68% accept rate
Yes. /username can be accessed via a .htaccess rewrite rule. I'm not good with .htaccess files - sorry! – JamWaffles Jan 6 '11 at 10:49
feedback

2 Answers

up vote 0 down vote accepted

Yes it is possible. Create a .htaccess file and use mod_rewrite to route the request.

Apache - mod_rewrite

mod_rewrite cheatsheet

link|improve this answer
addedbytes.com/for-beginners/url-rewriting-for-beginners - beginners guide to mod_rewrite – piddl0r Jan 6 '11 at 11:00
feedback

Yes you can do this easily using routing rules either in .htaccess file. If you use Codeigniter or zend framework you can do that more easily.

IN Codeigniter:

make a controller: user make a method: profile take a parameter: $userName

public function profile($userName){ ............................... }

got to route.php file in application/config/ folder

$route['(a-zA-Z0-9)'] = 'user/profile/$1';

So if you type http://www.domain.com/testuser it will hit to your User controller's profile method and pass the username as parameter to that method as $userName.

That's all...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.