Hey Guys,
Im not sure what Im doing wrong here, but I cant get this to work.
I've installed the files, and cant find anything that Im missing, but when I create a new category, and a test product, (or update an existing one), I always get a 404 not found broken link. :no:
I've put the rules in the root htaccess file as follows:
RewriteEngine On
Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
RewriteCond %{REQUEST_URI} !.[a-zA-Z]{2,4}$
Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/modifiedadminname.* [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors.* [NC]
Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
RewriteCond %{REQUEST_URI} !/frontend.* [NC]
RewriteCond %{REQUEST_URI} !/. [NC]
Handle all other URIs using Zen Cart (index.php)
RewriteRule (.*) index.php?%{QUERY_STRING} [L]
Anybody have any ideas of where to start looking for the problem here?
Thx!