Quote Originally Posted by conor View Post
Hi Alan,

I'm guessing that your rewrite rule is blocking the folder the image is in or that you are allowing images to be rewritten (the standard example rules don't rewrite images).

Try checking the rules and the path to the image and add any necessary exclusions (in a similar manner to excluding control panel folders etc.). Or just make sure images aren't rewritten and the image's file name has an extension (.jpg, png etc.).

Happy Christmas!

All the best...

Conor
ceon
Hello Conor,
After further checking, I still have that problem.
I think my rewrite rule don't blocking the folder the image,
the following is my rewrite rules:
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^jewellet\.com$ [NC]
RewriteRule ^(.*)$ http://www.jewellet.com/$1 [R=301,L]

# 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} !^/admin.* [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors.* [NC]
# Don't rewrite help live directory
RewriteCond %{REQUEST_URI} !^/livezilla.* [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 (.*) index.php?%{QUERY_STRING} [L]

# From Ultimate SEO URLs
RewriteRule ^print_page_p(.*)$ index.php?main_page=print_page&products_id=$1&%{QUERY_STRING} [L]
RewriteRule ^(.*)_p(.*).html$ index.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)_c([0-9]+)$ index.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)_c([0-9]+)/(.*)$ index.php?main_page=index&cPath=$2&display=$3&%{QUERY_STRING} [L]
RewriteRule ^(.*)_c([0-9]+)/(.*)/(.*).html$ index.php?main_page=index&cPath=$2&display=$3&%{QUERY_STRING} [L]
RewriteRule ^(.*)-m-([0-9]+).html$ index.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pi-([0-9]+).html$ index.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pr-([0-9]+).html$ index.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pri-([0-9]+).html$ index.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]

RewriteRule ^producttags/(.*)$ index.php?main_page=producttags&letter=$1&%{QUERY_STRING} [L]
RewriteRule ^producttags/(.*)/([0-9]+).html$ index.php?main_page=producttags&letter=$1&page=$2&%{QUERY_STRING} [L]
RewriteRule ^wishlist/$ index.php?main_page=wishlist [L]
RewriteRule ^wishlist/(.*)$ index.php?main_page=wishlist&letter=$1&%{QUERY_STRING} [L]
RewriteRule ^wishlist/(.*)/([0-9]+).html$ index.php?main_page=wishlist&letter=$1&page=$2&%{QUERY_STRING} [L]
# For Open Operations Info Manager
RewriteRule ^(.*)-i-([0-9]+).html$ index.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]

# All other pages
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*).html$ index.php?main_page=$1&%{QUERY_STRING} [L]
RewriteCond %{HTTP_HOST} ^jewellet.com$ [OR]

I found that, it seems that after installing Ceon Url, the web doesn't use some of the CSS files.
the problem page is http://www.jewellet.com/index.php?main_page=login
hope you can give me some indications.
Thanks and haappy a Gooooood Happy New Year!