Mobile app version of vmapp.org
Login or Join
Berryessa370

: How to disallow HTTP 302 redirects from another site to mine Is there any way to disallow referral 302 redirect traffic coming to to my site from other sites? People are trying to HIJACK my

@Berryessa370

Posted in: #302Redirect #Hijacked

Is there any way to disallow referral 302 redirect traffic coming to to my site from other sites?

People are trying to HIJACK my SERP with 302 Redirect HIJACK method.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Berryessa370

2 Comments

Sorted by latest first Latest Oldest Best

 

@Deb1703797

Deny visitors by referrer*

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} otherdomain.com [NC]
RewriteRule .* - [F]


*Does require a referrer header, which they could not send.

10% popularity Vote Up Vote Down


 

@Berumen354

There is no way to specifically block 302 redirects to your site from other domains. The only thing you are able to do is block referrals which are not coming from within your site but this would prevent linking in which is not a good practice for SEO.

As for your concern regarding hijacking your SERP ranking it won't work by 302 redirecting to you. The only way that would work is for your site to be compromised and 302 redirected to the offenders site.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme