countrycharm:
Did you clear your simple seo cache?
I did clear the cache. when I stop the SSU and remove htaccess file, everything is working as expected. The moment I put the .htaccess file back, I see the problem.
The problem seems to be in my .htaccess file. I am playing around with it now. But no luck.
here is my .htaccess
Options +FollowSymLinks -MultiViews
RewriteEngine on
RewriteCond %{HTTP_HOST} ^salevalley.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.salevalley.com$
RewriteRule ^shop/?$ "http://www.salevalley.com" [R=301,L]
RewriteCond %{HTTP_HOST} ^salevalley.com
RewriteRule (.*) http://www.salevalley.com/$1 [R=301,L]
BOF SSU
Change "/zencart/ to the correct setting
if your site is located at root folder, then you should have RewriteBase /
Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
RewriteBase /
Deny access from .htaccess
RewriteRule ^.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.*) index.php/$1 [E=VAR1:$1,QSA,L]
EOF SSU
Please let me know any changes needed.
Thanks