-1

Any one could help me to set the profile page like in the facebook profile page

Ex: www.facebook.com/username

I want to set the like my website address/username.Is it possible in php.

markus
  • 40,136
  • 23
  • 97
  • 142
CEN
  • 75
  • 1
  • 4

1 Answers1

0

Use .htaccess, a realy simple ussage could be:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s 
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^./(.*)/$ index.php?username=$1 [L] 

Than if the person will type http://www.example.com/nobody/ the $_GET['username'] will be filled with nobody

Check out this beginners tutorial on .htaccess

John In't Hout
  • 304
  • 1
  • 10