http://www.sockadoodle.com
openCart v1.5.5.1,
elegantCart theme (latest),
vqmod v2.x (but only one plugin is using it- Category Toggle Menu for 1.5.5.x),
Override Engine v5.2 (but when i disable this, i still get the same behavior).
update: I just turned off "use seo urls" and the problem went away. So I guess it's not a big deal for now, but I would still like to know why it's happening.
from .htaccess:
Code: Select all
# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{HTTP_HOST} ^sockadoodle.com [NC]
RewriteRule ^(.*)$ http://www.sockadoodle.com/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]