I'm trying to block the following site from showing my content on their site. Their URL: https://www.zarafe.com/zarafe/nph-gov.ir.pl/010110A/http/www.mysite.com/ I've added the following to my .htaccess but can't seem to get it to work: RewriteCond %{HTTP_REFERER} ^https://www\.zarafe\.com/ RewriteRule .* http://www.mysite.com [R=301,L] RewriteEngine On RewriteCond %{HTTP_REFERER} ^http://www\.ir\.pl/ RewriteRule .* http://www.mysite.com [R=301,L] order allow,deny deny from 74.84.152.38 deny from 193.9.123.60 allow from all I can't tell which domain/ip belongs to the offender so I added both. I also added <base href="http://www.yoursite.com/" /> to the header of each of my pages. Am I missing something? This setup still doesn't seem to work. Thanks