MPAA - Loans - Shares - Mobile Phone - Debt Help

PDA

View Full Version : .htaccess emergency! please help


raven2424
Apr 17th 2006, 7:02 pm
i have this code

Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*).htm$ index.php?done=$1.htm [L]

so that the url would be like domain.com/page.htm but now all my pages are .php so what would the .htccess code be to that i would get same result??

i want to use my links like domain.com/page.php

mad4
Apr 18th 2006, 5:30 am
Options +Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^(.*).php$ index.php?done=$1.php [L]