V
V
Viktor Rezanovich2017-07-05 15:15:09
Malware
Viktor Rezanovich, 2017-07-05 15:15:09

How to get rid of a doorway site that redirects to your site?

There is a gaming site and traffic redirects to it (all bots from referrals are bounces according to the 99% metric) doorway. How to get rid of this site with a redirect to my site? Dor is hosted by narod.ru

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Viktor Rezanovich, 2017-07-05
@rezan89

Thanks everyone, I found the solution. For those who are interested:
Blocking visitors from a specific domain
If you don't want to see users from a specific domain on your site, you can block their access. For example, users from unwanted resources (adult sites, hacker sites, etc.) can be redirected to a 403 Forbidden page. To do this, mod_rewrite must be enabled, although it is usually enabled by default. Add code to .htaccess:
RewriteEngine on
RewriteCond %{HTTP_REFERER} bannedurl1.com [NC,OR]
RewriteCond %{HTTP_REFERER} bannedurl2.com [NC,OR]
RewriteRule .* - [F]
You need to replace bannedurl1.com and bannedurl2.com with the domains you want to blacklist. You can use the [NC] flag to indicate that the entered domain name is case insensitive. The [F] flag indicates the type of action, in this case, displaying a 403 Forbidden error. If you want to ban multiple sites, use the [NC, OR] flags for each domain, if you want to ban a single domain, use only the [NC] flag.

S
Semyon Beloglazov, 2017-07-05
@Batlab

1. If you are afraid of bots, then connect cloudflare to a free plan and set the under attack mod, after which, if necessary, block the IPs of bots
2. If you need to get rid of the dor itself, then write to the hosting support with a complaint about the dor. Close during the day.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question