Hello All,
Needed some help on the .HTACCESS rewrites for the CEON Extension:
Got the entire extension installed properly, as verified on the installation checks. Also got the directives that were provided from the extension for the .htaccess file, but still can't get it to take effect.
Site is @
http://www.tiledart.com/shop2/
Here is the code provided from the extension for .htaccess:
## 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 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
# Don't rewrite tmp directory
RewriteCond %{REQUEST_URI} !^/shop2/tmp/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* /shop2/index.php [QSA,L]
## END CEON URI MAPPING REWRITE RULE
I have the extension activated on the admin panel, and rebooted the server to see if it would take effect, but no luck.
Can anyone offer a suggestion ????
Thanks,
Rudy