Hi,

Originally Posted by
antan88
Yes but the problem is that im not so good at english so i have problems with the understanding and im a total newbie on this.
Okay, I'll take the time to specifically help you with your site in this way... which is a little unfair on me as it's not my responsibility to translate documentation for people who can't speak the language well enough themselves.
If there is no .htaccess file in your store's MAIN directory (the public_html folder), create one and add the following, otherwise add the following to the existing .htaccess file.
Do NOT use the .htaccess file in your store's admin directory, which apparently is called "admin_login".
Code:
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 admin directory
RewriteCond %{REQUEST_URI} !^/admin_login [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 [QSA,L]
That should be all you need to do.
All the best..
Conor
ceon
Bookmarks