How Do I Prevent Spam Referral Traffic to My Blog?

Hello, everyone...!

I check my Google Analytic I found that I lots of spam traffic from some hacker such Iloveitaly and other. Those referal traffic give none conversion traffic and damage my Google ad impressive. I have excluded those referral from my Google Analytics, but I want completely block those referral traffic

Is there any way to block those kind of spam traffic..?

Thanks
 

elcidofaguy

Active Member
Hello, everyone...!

I check my Google Analytic I found that I lots of spam traffic from some hacker such Iloveitaly and other. Those referal traffic give none conversion traffic and damage my Google ad impressive. I have excluded those referral from my Google Analytics, but I want completely block those referral traffic

Is there any way to block those kind of spam traffic..?

Thanks

Indeed spam referral is a massive problem... In fact most people dont even realize it and think they are getting much more traffic than what they are really getting.... I've had major issues with semalt which got me to take action with blocking access to my web server....

Simply add the below code to your website .htaccess noting that you need to add your sites to it. Its a great piece of code which not only blocks but redirects the spam referrer back to the semalt spam referral site..

Code:
# BEGIN DETER SEMALT
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://.*semalt\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*kambasoft\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*savetubevideo\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*yapoga\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*bottlenose\.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*descargar-musica-gratis\.net [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://.*baixar-musicas-gratis\.com [NC]
RewriteRule (.*) http://www.semalt.com [R=301,L]
# END DETER SEMALT

For me this has worked wonders.... Although you will need to keep on top if it with adding more sites to your deter list....
 

vishwa

Active Member
This is the major issue with most of the bloggers who are facing issue with spam referral traffic. You can create a filter in your Google analytics account and exclude the spam sites to showing up on your analytics account. There are also few plugins available in WordPress to stop spam traffic like Stop spam traffic, Wordfence, All in one wp security etc.
 
Top