Just did a fresh install of zencart 1.3.9H
Added the latest version of ceon url mapping
Every product page that I add a url to won't view correctly. It is like every page that gets the URL is showing the main-page data
socialmarketingninjas.com
I am pretty sure it is the .htaccess file issue. an empty file gives me this error, but the recommended settings give all 404 errors, with the two // or with / on the index.php
any suggestions?
## BEGIN CEON URI MAPPING REWRITE RULE
RewriteEngine On
# ONLY rewrite URIs beginning with //
RewriteCond %{REQUEST_URI} ^// [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} !^//admin-xxxxxx [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^//editors/ [NC]
# Don't rewrite cgi-bin directory
RewriteCond %{REQUEST_URI} !^//cgi-bin/ [NC]
# Don't rewrite marketing directory
RewriteCond %{REQUEST_URI} !^//marketing/ [NC]
# Don't rewrite .qidb directory
RewriteCond %{REQUEST_URI} !^//.qidb/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* //index.php [QSA,L]
## END CEON URI MAPPING REWRITE RULE
Bookmarks