I have a dynamic site PhotographyAttic with the following code in my htaccess file
RewriteEngine on
RewriteBase /
#Make dynamic url neater
RewriteRule ^category-(.*) category.php?catid=$1
RewriteRule ^manufacturer-(.*) manufacturer.php?manuid=$1
RewriteRule ^product-(.*) product.php?id=$1
#remove.php from end of url
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
#force www
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} !^www.photographyattic.com$ [NC]
RewriteRule ^(.*)$ http://www.photographyattic.com/$1 [L,R=301]
How do I fix the following error
http://www.photographyattic.com/category.php?catid=9 and http://photographyattic.com/category.php should resolve to the same URL, but currently do not.