Hi,

Originally Posted by
sung2010
I've just received your email a min ago,,, ( don't know why it takes so long)
That was very strange. At least you got it in the end.

Originally Posted by
sung2010
I've included my ftp information in the email.
The problem with the admin wasn't the Ceon URI Mapping rewrite rule but the rule countrycharm posted.. it was redirecting the admin URIs which was resulting in no POSTed forms working in the admin.
I've modified that rule and everything is working perfectly now.
The working .htaccess file is identical now to the example rule in the Ceon URI Mapping documentation, with an additional rewrite rule above, adjusted to work with the Zen Cart admin on a SSL site:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^happyworkshopus.com$ [NC]
RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [NC]
RewriteCond %{REQUEST_URI} !^/editors [NC]
RewriteRule ^(.*)$ http://www.happyworkshopus.com/$1 [R=301,L]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/ADMINFOLDERNAME [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors [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]
No worries about the mistake countrycharm.. obviously your site is set up differently and the rules you posted work for you. :)
All the best..
Conor
ceon
Bookmarks