Hello guys, I have a problem.
Zen cart v1.39h
ceon uri mapping v4.0.8
I have a zen cart website: will call it www.mysite1.com
I want to create a second zen cart website on the same webhost account.
I have uploaded a folder with the zen cart install files to public_html/mysite2.com
Every time i typ in my website adress www.mysite2.com it gets redirected to www.mysite1.com.
I think the .htaccess file is the problem,i had contact with my webshost support and they confirmed that the htaccess is the problem.
They gave me advice how to fix it but it didn't help. I used the example htaccess fom the ceon uri mapping module.
I don't know what to change in the htaccess file to make it work.
here's my htaccess
## BEGIN CEON URI MAPPING REWRITE RULE
RewriteEngine On
# 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} !^/ZCadmin_RAY [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors/ [NC]
# Don't rewrite ext directory
RewriteCond %{REQUEST_URI} !^/ext/ [NC]
# Don't rewrite sitemap directory
RewriteCond %{REQUEST_URI} !^/sitemap/ [NC]
# Don't rewrite webstats directory
RewriteCond %{REQUEST_URI} !^/webstats/ [NC]
# Don't rewrite min directory
RewriteCond %{REQUEST_URI} !^/min/ [NC]
# Don't rewrite bmz_cache directory
RewriteCond %{REQUEST_URI} !^/bmz_cache/ [NC]
# Don't rewrite mail directory
RewriteCond %{REQUEST_URI} !^/mail/ [NC]
# Don't rewrite cgi-bin directory
RewriteCond %{REQUEST_URI} !^/cgi\-bin/ [NC]
# Don't rewrite fonts directory
RewriteCond %{REQUEST_URI} !^/fonts/ [NC]
# Don't rewrite mysite2 directory
RewriteCond %{REQUEST_URI} !^/mysite2\.com/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* index.php [QSA,L]
## END CEON URI MAPPING REWRITE RULE
Thanks.
Bookmarks