mod_rewrite Question

Discussion in 'PHP' started by DemonMaster, May 2, 2007.

  1. #1
    i need to know how i would mod_rewrite just the php extension for example

    from: home.php
    to: home.html
     
    DemonMaster, May 2, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    
    RewriteEngine On
    RewriteRule ^(.+)\.html$ $1.php%{QUERY_STRING}
    
    Code (markup):
    Or:
    
    AddType application/x-httpd-php .html
    
    Code (markup):
    You would need to change the extensions with the second method though.
     
    nico_swd, May 2, 2007 IP
  3. DemonMaster

    DemonMaster Active Member

    Messages:
    397
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    68
    #3
    Awesome thank you i used the first 1 and it worked great
     
    DemonMaster, May 2, 2007 IP