Jump to content

Twitter like user directory


TylerDiaz

Recommended Posts

I have googled it and tried finding how it is done, but not much luck. So i come asking fellow php developers.

 

You know how on twitter and a couple of other sites when you register you get a custom directory according to your registered username? How is that acomplished?

Link to comment
Share on other sites

One solution would be to use mod_rewrite:

 

RewriteRule ^([a-z0-9]+)$ profile.php?username=$1

 

Check out the documentation for a more elaborate explanation of how it works.

 

It's sort of the same thing we've done here: http://www.phpfreaks.com/profile/Daniel0. We just put /profile in front of the username. It's not really a directory, but the URL is rewritten to another URL that exists.

Link to comment
Share on other sites

One solution would be to use mod_rewrite:

 

RewriteRule ^([a-z0-9]+)$ profile.php?username=$1

 

Check out the documentation for a more elaborate explanation of how it works.

 

It's sort of the same thing we've done here: http://www.phpfreaks.com/profile/Daniel0. We just put /profile in front of the username. It's not really a directory, but the URL is rewritten to another URL that exists.

 

Hmm i seem to be understanding the concept. Think you can provide a bit more indepth of an explination? Do i modify the .htaaccess and add the code there or?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.