as it stands, the root (public_html) folder has an .htaccess file but the Zen Cart subdirectory (store) does not, can you point me to a generic .htaccess file for ZenCart I don't think there was one in ZC root, should there be? There is one in the admin folder as well. The .htaccess file in the root (public_html) folder is:
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://mystore.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://mystore.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.mystore.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.mystore.com$ [NC]
RewriteCond %{HTTP_REFERER} !^https://mystore.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://mystore.com$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.mystore.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^https://www.mystore.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp|php)$ - [F,NC]