0

I want to block specific website that refers my site, a paid site that is linking to my site. I receive many emails requesting cancellation, when in fact, it's not even possible on my site because I don't charge.

.htaccess using

deny access members.website.com
Phil
  • 157,677
  • 23
  • 242
  • 245
user1040259
  • 6,369
  • 13
  • 44
  • 62

1 Answers1

2

Do this:

RewriteEngine on
RewriteCond %{HTTP_REFERER} members\.website\.com [NC]
RewriteRule .* - [F] 
Luis Ávila
  • 689
  • 4
  • 14