user1040259
user1040259

Reputation: 6509

Block URL to my site

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

Answers (1)

Luis Ávila
Luis Ávila

Reputation: 699

Do this:

RewriteEngine on
RewriteCond %{HTTP_REFERER} members\.website\.com [NC]
RewriteRule .* - [F] 

Upvotes: 2

Related Questions