Conor, great contribution! I installed it and it works very well.
Now here is my problem. My Zen Cart is installed in the root directory (of an Apache) server.
I want to install a completely separate website in its own directory under the root. So I created the folder "mynewsite" and pointed mynewsite.com to this directory.
This works fine if I delete the htaccess file I installed with Ceon URI Mapping (SEO). However, when I do this, Ceon URI Mapping (SEO) breaks.
Needless to say, my problem seems to be in the htaccess file. I've searched the web trying to find a solution; but have had no luck.
Do you know how I should modify the htaccess file so that incoming http requests to mynewsite.com are ignored by Ceon URI Mapping (SEO)?
For reference, below is what I currently have in my htaccess file.
Thanks and best regards,
Doug
RewriteEngine On
Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
RewriteCond %{REQUEST_URI} !.[a-zA-Z]{2,4}$
Don't rewrite bad2min directory
RewriteCond %{REQUEST_URI} !^/admin.* [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors.* [NC]
Don't rewrite site manager directories
RewriteCond %{REQUEST_URI} !/pma.* [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]