Thanks for the reply.
I had one more question regarding the CEON as it relates to just getting the manual entry form of CEON working properly.
These two categories here were somehow automatically placed in the shortened CEON format.
http://tiledart.com/shop2/mosaics
http://tiledart.com/shop2/mosaics?pg=store
http://tiledart.com/shop2/terra-ferma-import
http://tiledart.com/shop2/terra-ferma-import?pg=store
Im not able to have the URI mapping take effect. I am able to enter it on the backend, but it doesn't activate on the frontend.
On this product here below. I have the manual URI mapping on the product as /shop2/mosaics/airblack
but it is not accessible via this URL, but only the regular zencart format @
http://tiledart.com/shop2/index.php?...roducts_id=299
This is the .htaccess config that I have:
## BEGIN CEON URI MAPPING REWRITE RULE
RewriteEngine On
# ONLY rewrite URIs beginning with /shop2/
RewriteCond %{REQUEST_URI} ^/shop2/ [NC]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
# Don't rewrite any URIs for some, popular specific file format extensions,
# which are not covered by main file extension condition above
RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
# Don't rewrite any URIs for some specific file format extensions,
# which are not covered by main file extension condition above
# Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
#RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/shop2/tdart [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/shop2/editors/ [NC]
# Don't rewrite logs directory
RewriteCond %{REQUEST_URI} !^/shop2/logs/ [NC]
# Don't rewrite images2 directory
RewriteCond %{REQUEST_URI} !^/shop2/images2/ [NC]
# Don't rewrite tdart2 directory
RewriteCond %{REQUEST_URI} !^/shop2/tdart2/ [NC]
# Don't rewrite tmp directory
RewriteCond %{REQUEST_URI} !^/shop2/tmp/ [NC]
# Don't rewrite googlecheckout directory
RewriteCond %{REQUEST_URI} !^/shop2/googlecheckout/ [NC]
# Don't rewrite languages directory
RewriteCond %{REQUEST_URI} !^/shop2/languages/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* /shop2/index.php [QSA,L]
## END CEON URI MAPPING REWRITE RULE
Thanks