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
Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^(.*).php$ index.php?done=$1.php [L] Code (markup):