I just want to touch a bit further on the gallery images.
What I'm tying to achieve is to not allow regular Guests visiting the site to view full size images (allow thumbnails only). But at the same time, I want to let search engines like Google index my images from my site. So when it comes to people doing image searches in google. My sites images will be index and show up to help boost the site hits.
Now my way of thinking is like this. If you use the
.htaccess file that comes with the gallery, were it put's it in the main gallery folder. That basicly stops everybody outside the site from hot linking to them (google included along with every other image search engine). But from what I've seen so far, that gallery .htaccess file only stops Full Size images from being linked to and not thumbnails. (It seems thumbnails can still be linked to). I'm presuming this was done so search engines like Google can still index your thumbnail images without stealing to much bandwidth in displaying them. (correct me if I'm wrong on that).
But I have another option open to me, instead of using the gallery .htaccess file. I have the option to use a same file from my server instead were it puts the file in my ROOT directory to protect every single image on the site from being liked too outside my domain (including thumbnails). However, I can add other domains to allow. Like for example by default my server .htaccess file if I used it only has.
Code:
Content visible to verified customers only.
So what I'm thinking is: If I added Google to the list like this: Which I can do from the server .htaccess file options there to allow other referers
Code:
Content visible to verified customers only.
Would that then stop normal guest from viewing and even linking to thumbnail images. But still alow Google to index my gallery along with full size images.