Es imposible solucionar un problema .htaccess, sin conocer la estructura de tu web. De todas formas te propongo otras opciones que considero son mas validas.
Código :
Ver originalRewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1
Código :
Ver originalRewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php