Reputation: 6509
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
Upvotes: 0
Views: 47
Reputation: 699
Do this:
RewriteEngine on
RewriteCond %{HTTP_REFERER} members\.website\.com [NC]
RewriteRule .* - [F]
Upvotes: 2