Правило:
RewriteRule ^category/(.+)/?$ category.php?cat=$1 [NC,L]
Ваш .htaccess должен выглядеть следующим образом:
<IfModule mod_rewrite.c>
#if the name of the php file is the same of the path, you have to remove MultiViews
Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteRule ^category/(.+)/?$ category.php?cat=$1 [NC,L]
</IfModule>