Mod Rewrite Question

Discussion in 'Site & Server Administration' started by MikeLiao, Sep 28, 2008.

  1. #1
    How can I rewrite my URL from this
    http://www.mydomain.com/myfolder/index.php?g=category&page=1
    Code (markup):
    into something like this

    http://www.mydomain.com/myfolder/category/page1.html
    Code (markup):
    Thanks
     
    MikeLiao, Sep 28, 2008 IP
  2. zone69

    zone69 Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try this:
    
    RewriteRule ^myfolder/([A-Za-z0-9_A-Za-z0-9]+)/page(.+)\.html$ /myfolder/index.php?g=$1&page=$2 [NC]
    
    Code (markup):
    I haven't tried it but I think it should work. :D

    Good Luck
     
    zone69, Sep 28, 2008 IP
  3. MikeLiao

    MikeLiao Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Sorry for my mistake, but the htaccess file will be placed under "myfolder" directory.

    How will I rewrite it?
     
    MikeLiao, Sep 28, 2008 IP
  4. zone69

    zone69 Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    This is how the rewrite rule would look if the .htaccess was placed under myfolder.

    
    Rewriteengine on
    RewriteRule ^([A-Za-z0-9_A-Za-z0-9]+)/page(.+)\.html$ http://mydomain.com/myfolder/index.php?g=$1&page=$2 [NC]
    
    Code (markup):
    If you already have the "RewriteEngine on" directive then don't add it twice. Just place the rewriterule underneath it.

    That should work for you.

    Good Luck!
     
    zone69, Sep 28, 2008 IP
  5. MikeLiao

    MikeLiao Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thank you very much zone69
     
    MikeLiao, Sep 28, 2008 IP
  6. Bohra

    Bohra Prominent Member

    Messages:
    12,573
    Likes Received:
    537
    Best Answers:
    0
    Trophy Points:
    310
    #6
    You will also have to change the codes of ur site offcourse
     
    Bohra, Sep 29, 2008 IP