Simple mod_rewrite help needed! +rep

Discussion in 'Apache' started by crazyryan, Sep 25, 2006.

  1. #1
    Will give rep for all help..

    I need too turn my links such as ..

    link1.php
    link2.php

    to ..

    /link1/
    /link2/

    I've had the code before and i know it's simple so yeah ..

    Will award rep for all help :)
     
    crazyryan, Sep 25, 2006 IP
  2. Nintendo

    Nintendo ♬ King of da Wackos ♬

    Messages:
    12,890
    Likes Received:
    1,064
    Best Answers:
    0
    Trophy Points:
    430
    #2
    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^([^.]+)/$ $1.php [L]
     
    Nintendo, Sep 25, 2006 IP
    fsmedia likes this.