How to hide links from SEO crawler

Marabunta

BANNED
Joined
Dec 9, 2019
Messages
59
Reaction score
21
If you want to hide outbound link that is either Authoritative/good or Spam/bad so that it can be picked up by search engine but not by SEO link check, how can this be done?
 
Last edited:
If you want to hide outbound link that is either Authoritative/good or Spam/bad so that it can be picked up by search engine but not by SEO link check, how can this be done?

@Marabunta

When it comes to hiding links from SEO crawlers, here are some solutions you can consider. Robots.txt is one of the best ways to prevent spiders from accessing your website. Another way is via the Meta Robots Tag. It allows the blocking of crawlers to access your website by page level through applying "noindex." Using Iframes can embed content from other URLs into any selected web page. Lastly, you can consider using Java Applets, which hides text in images.
 
OP you can block them using robot txt file, but nowadays they are ignoring it.
 
Blocked with robots.txt or add nofollow tag on website
 
Most SEOs accomplish through abhorrent .htaccess lists of bots to block.

The current solutions are…

  • .htaccess files
    • Not always applicable if you don’t have full control over the site
    • Often times blocked from being edited
    • Require some technical know-how, updating, and blind trust
    • Footprint if set up incorrectly
      • Blind trust/copying pasting code you find online is bound to lead to problems
  • robots.txt
    • (lol)
  • WordPress plugins
    • Not so great if you’re not using WordPress
    • Require blind-trust in the author of the plugin
    • Footprint if (when) set up incorrectly (more on that in another post)
 
Well, I haven't tried this but just thought of it and logically seems like it should work..

1) Create a new folder
2) Block bot permissions to said folder
3) Any shady link you want to redirect you create a 301 redirect within that folder
4) Link from your website to whichever one of those 301s you want to link to

You can use a combination of the other comments above too..

So you can use robots + htaccess to block bot access to that folder of redirects as well as include the noindex, nofollow meta tag within your 301 redirects. Also on your href link out you can add a rel=nofollow.
 
"Robots.txt" will helps you to block from SEO crawler..
 
Robots.txt is the WORST way to block them. It's basically just asking crawlers not to crawl your site, but it's up to them to do it or not, and bot companies need the data to survive... And you're leaving a footprint.

If you don't have your own script, at least do the checks in an htaccess file.

The best way to do it is to trick them into thinking they are viewing a legit page, if you block them by user agent and send them an error or redirection code as a response, some might try to re-crawl your site disguised as a regar user or even as google bot.
 
No matter how good you’re hiding those networks, James PBN finder bot will locate them.
 
When building links, especially on PBN's, it is important to block SEO crawlers like Ahrefs and Majestic. Most SEO's accomplish through abhorrent.ht accesses list of bots to block.
 
Back
Top