Changes in .htacces

# SEF BEGIN
# Change ReWrite base according to where your store is located
# / is domain.com and /catalog is domain.com/catalog
RewriteEngine on
RewriteBase /catalog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ http://www.sitename.com/index.php?cPath=$1 [L]

# SEF END


This solves the problem



More...