Mobile app version of vmapp.org
Login or Join
Rivera981

: In addition to what mickburkejnr suggested, I'd also say that if images are your main source of income for the site, investing in a good flash photo gallery is going to be a good way to

@Rivera981

In addition to what mickburkejnr suggested, I'd also say that if images are your main source of income for the site, investing in a good flash photo gallery is going to be a good way to help deter them. There are tools out there to decompile the flash files, but disabling javascript can be done within each browser easily as well.

I'd also recommend that you disallow crawlers like xenu, wget and curl so that they aren't simply using wget to scrape the contents of your site.

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xenu's [OR]
RewriteCond %{HTTP_USER_AGENT} ^curl
RewriteRule ^(.*)$ www.robotstxt.org/

As a note, denying curl by itself is in itself, not much of a fix as curl can emulate pretty much any string they need to. To disable hotlinking of the images, put this in your .htaccess

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www.)?yourdomainname.com/.*$ [NC]
RewriteRule .*.(gif|jpg|png|ico)$ – [F,L]
</ifModule>

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Rivera981

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme