how to block all blogspot blogs from leeching?

3 replies
there are about 50 spammy websites I discovered(so far) on blogspot which are leeching pictures. Is there a way to block them? via IP deny or .htaccess?
For what I care, it would be nice to block any blogspot websites from accessing/leeching any content.


Would something like this work in htaccess




# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(.+\.)?blogspot\.com/ [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(www\.)?spamwebsite\.com(/.*)*$ [NC]
RewriteRule \.(jpeg|JPEG|jpe|JPE|jpg|JPG|gif|GIF|png|PNG|mng|M NG)$ - [F]
#block #blogs #blogspot #leeching

Trending Topics