Hi
First of all, I'm going to show you what I'm trying to achieve.
On top of the wordpress rewrite rule to change index.php?p=1 to /category/blah
Wordpress rule:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I also want to rewrite all my php files, (like about.php) to about, and contact.php to contact etc.
I know mod_rewrite is a pain, but hope someone can help
