URGENT HTACCESS helped needed

Discussion in 'Apache' started by sundaybrew, Feb 19, 2007.

  1. #1
    Can you tell me how to:

    I have a url pages.php?type=soccer&title=who-is-best


    I need it to be

    /soccer/who-is-best

    I will leave you rep for the help :)
     
    sundaybrew, Feb 19, 2007 IP
  2. 2slick

    2slick Peon

    Messages:
    73
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME}  -d
    RewriteRule  ^.*$  -  [L]
    
    RewriteRule ^(.*)/(.*)$ pages.php?type=$1&title=$2 [L]
    
    
    Code (markup):
     
    2slick, Feb 19, 2007 IP
    sundaybrew likes this.
  3. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #3
    Hmmm...Psychotomus1 sent me a PM asking for da exact same code!! You sure you two arn't da same humanoids..or are you two major competitors, hince da URGENCY!! er, he beat you to da code, by almost two hours!!! :D

    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^([^.]+)/([^.]+)$ pages.php?type=$1&title=$2 [L]

    If you have any real directories, it might mess stuff up that's in them.
     
    Nintendo, Feb 19, 2007 IP
  4. sundaybrew

    sundaybrew Numerati

    Messages:
    7,294
    Likes Received:
    1,260
    Best Answers:
    0
    Trophy Points:
    560
    #4
    He is my coder, I posted here to find help....I wasnt sure who he asked or when....

    My site , so I was urgent

    Thanks for the help

    NINTENDO YOU ROCK!!!!

    2 SLICK YOU ROCK!!!!
     
    sundaybrew, Feb 19, 2007 IP
  5. WebGeek182

    WebGeek182 Active Member

    Messages:
    510
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    95
    #5
    WebGeek182, Feb 22, 2007 IP