Permalinks?

Discussion in 'PHP' started by sahilcoolsmart, Aug 26, 2007.

  1. #1
    I have a web service where users have their own page with their name in the URL.
    So that David can see his profile via above link.

    But i want same page opens with
    Please tell me, how can i do this thing?.
     
    sahilcoolsmart, Aug 26, 2007 IP
  2. tamilsoft

    tamilsoft Banned

    Messages:
    1,155
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Use apache mod_rewrite, If you are not sure about this, let me know I will give the code too..
     
    tamilsoft, Aug 26, 2007 IP
  3. sahilcoolsmart

    sahilcoolsmart Well-Known Member

    Messages:
    1,192
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    140
    #3
    Thanks.
    Please give me the code for doing it.
     
    sahilcoolsmart, Aug 26, 2007 IP
  4. tamilsoft

    tamilsoft Banned

    Messages:
    1,155
    Likes Received:
    78
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Put this line in your .htaccess file

    RewriteRule ^(.*)/$ index.php?user=$1
    PHP:
     
    tamilsoft, Aug 26, 2007 IP
    sahilcoolsmart likes this.
  5. sahilcoolsmart

    sahilcoolsmart Well-Known Member

    Messages:
    1,192
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    140
    #5
    It works... :D
     
    sahilcoolsmart, Aug 26, 2007 IP