Jump to content

Twitter like user directory


TylerDiaz

Recommended Posts

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.

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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.