View Single Post
  #2 (permalink)  
Old 10-06-2007, 10:51
Nelson Nelson is offline
Junior Member
 
Join Date: Jun 2007
Posts: 18
Default

I think the following rules will work

for index.php?p=1 to /category/blah use following rule
RewriteRule ^category/(.*)$ index.php?p=$1

for contact.php & about.php
RewriteRule ^about$ about.php
RewriteRule ^contact$ contact.php

If you want to hide the php extensions of all the files then
RewriteRule ^(.*)$ $1.php
Reply With Quote