
Originally Posted by
makalele33
conor,
i tried it twice again
i made sure all the files where in place.
then i when thru the config
my store is on a subfolder called shop so i went ahead and put the following rewrite
RewriteEngine On
# ONLY rewrite URIs beginning with /shop/
RewriteCond %{REQUEST_URI} ^/shop/ [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 admin directory
RewriteCond %{REQUEST_URI} !^/shop/admin [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/shop/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]
then i went and changed the part where it says admin to my admin folder name.
RewriteCond %{REQUEST_URI} !^/shop/admin [NC]
i uploaded the file and when i go in to check if i type in the path where the folder is it works but when i try to get the admin it says an error.... i been trying to get this fix for like 6 days and nothing
Bookmarks