Hi Conor, first of all, thank you for your great module. I have a little problem and hope that you could help. When I go my domain name https://www.unique-womens-clothing.com, it show Index of / with list of my website folder. Bluehost's support ask me to do a redirect to my cart folder https://www.unique-womens-clothing.com/online-store from the cpanel but that didn't work. He said there is a conflict with my .htaccess rewrite and they wouldn't be able to help. I have also try adding a / as you have mention in the installation guide but still don't work. What should I add to the .htaccess in order to direct my domain to my cart folder? Below is my .htacess, thank you.
RewriteEngine On
ONLY rewrite URIs beginning with /online-store/
RewriteCond %{REQUEST_URI} ^/online-store/ [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 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|3dm
l)$ [NC]
Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/online-store/myadmin [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/online-store/editors/ [NC]
Don't rewrite bmz_cache directory
RewriteCond %{REQUEST_URI} !^/online-store/bmz_cache/ [NC]
Don't rewrite feed directory
RewriteCond %{REQUEST_URI} !^/online-store/feed/ [NC]
Don't rewrite cgi-bin directory
RewriteCond %{REQUEST_URI} !^/online-store/cgi-bin/ [NC]
Don't rewrite ajax directory
RewriteCond %{REQUEST_URI} !^/online-store/ajax/ [NC]
Don't rewrite sitemap directory
RewriteCond %{REQUEST_URI} !^/online-store/sitemap/ [NC]
Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* /online-store/index.php [QSA,L]
END CEON URI MAPPING REWRITE RULE