All the category pages still view properly with the right information. But when I click to view a product in category 20, I get a product from category 25. This happens regardless of what category I am in. I only load products from category 25.
If I turn SEO URLs off, everything goes back to normal and I can view all products, everything is linked perfectly. My seo keywords are setup as "store/category/product-name" and here is my htacess file:
Code: Select all
# Options +FollowSymlinks
# Prevent Directoy listing
# Options -Indexes
#
# # Prevent Direct Access to files
# <FilesMatch "\.tpl">
# Order deny,allow
# Deny from all
# </FilesMatch>
# SEO URL Settings
RewriteEngine On
RewriteBase /wallpapers/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]