Hi there,
I installed the Ceon URI module and it is working, but I only have one problem.
When I have the module on, images are broken in my product page, but also the language flags in the sidebox. When I turn the module off the images are shown good.
Could this be something to do with the rewriting in .htaccess file?
This is my .htaccess file:
RewriteEngine On
ONLY rewrite URIs beginning with /shop/
RewriteCond %{REQUEST_URI} ^/shop/.* [NC]
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} !^/shop/mypanel.* [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/shop/editors.* [NC]
Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
RewriteCond %{REQUEST_URI} !/frontend.* [NC]
Handle all other URIs using Zen Cart (index.php)
RewriteRule (.*) /shop/index.php?%{QUERY_STRING} [L]
I couldn't find the answer in the posts, so I hope someone knows a solution for this.