[ad_1]
At the moment, there are two methods everyone seems to be conscious of for hiding your backlinks so they do not seem in hyperlink checkers like Majestic, aHrefs and the remaining:
- [*=left]Robots.txt file
[*=left].htaccess file
Through the use of the command:
Person-agent: AhrefsBot
Disallow: /
If the ahrefs crawler abides by the robots.txt guidelines (which from my expertise does), your PBN website will not be included within the aHrefs hyperlink index.
Nevertheless, there’s one huge downside with this – some hyperlink checkers MIGHT NOT respect these guidelines, and extra importantly – EVERYONE, together with Googlebot can learn this file and discover out that you don’t need your website listed by hyperlink crawlers. I’ve analyzed a whole lot of legit websites and only some had this rule of their robots.txt file. This makes utilizing a robots.txt file A HUGE FOOTPRINT. Should you do not imagine me, and you’re utilizing this methodology, merely get one in every of your cash websites that’s backlinked by a PBN amongst different hyperlinks and undergo every linking area and verify its robots.txt file – as a rule, the one domains linking to you which have these guidelines within the Robots.txt file are your (or another person’s) PBN.
The .htaccess file is totally completely different. The .htaccess file is a configuration file that tells your internet hosting what to do in sure conditions. In our case, it’s used to inform the website hosting – “If ahrefsBot or MJ16 tries to view this web site, redirect them to Wikipedia.org”. When the ahrefs crawler tries to index your PBN area, and the .htaccess file is ready up correctly, the ahrefs crawler will obtain a 301 redirect to Wikipedia (or any website you place in there) – it will not know that you’ve another content material in there.
The largest benefit of the .htaccess file is that you’re the one one who can see it. When google visits the web site, it will not discover ANY distinction in any respect. When an individual visits your website they will not discover something completely different.
Briefly –
Robots.txt – footprint – anybody can see it!
.htaccess – solely you may see it, no footprint!
How one can arrange the .htaccess file to cease hyperlink checkers from indexing your PBN domains:
This may be performed pretty straightforward from cPanel, and I am going to stroll you thru it:
1. Log in to cPanel
2. In cPanel, press on File Supervisor:
3. Ensure that the “Present Hidden Recordsdata” checkbox is checked:
5. As soon as the editor opens up, add the next proper after the road “RewriteEngine On”:
#First we make it possible for every request has a user-agent (legit browsers at all times use these, search engine crawlers as properly)
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule ^(.*)$ – [F,L]
#Subsequent we block the bots
RewriteCond %{HTTP_USER_AGENT} ^.*AhrefsBot.*$ [NC]
RewriteRule ^.*.* http://www.bing.com/ [R=301,L]
RewriteCond %{HTTP_USER_AGENT} ^.*MJ12bot.*$ [NC]
RewriteRule ^.*.* http://www.bing.com/ [R=301,L]
RewriteCond %{HTTP_USER_AGENT} ^.*rogerbot.*$ [NC]
RewriteRule ^.*.* http://www.bing.com/ [R=301,L]
RewriteCond %{HTTP_USER_AGENT} ^.*<useragent_name >.*$ [NC]
RewriteRule ^.*.* http://www.bing.com/ [R=301,L]
and you may as well change the redirect area.
As soon as all is ready and performed, it ought to seem like this for an everyday wordpress set up:
Pastebin: http://pastebin.com/GwB4b3pT
3. Press Save
When you’ve got any questions, submit them beneath and I am going to do my finest to reply them.
[ad_2]
