Question about setting up a blog network

cmw333

Registered Member
Joined
Oct 13, 2011
Messages
52
Reaction score
6
I just recently set up my first blog network of 10 sites and noticed when I checked my backlinks in majesticseo, the links that had already indexed were not only showing the main homepage url, but also the feed, category and author pages. Because this is my own network and only intend to keep the articles on the homepage is there any way to block majesticseo or the search engines from indexing . The best example I can find is here https://www.majesticseo.com/reports...rce=F&q=http://www.vinylsidingpricesguide.com. Is there a plugin I need to use to block the google bots?
 
here's some code you can apply to your .htaccess file to block some bad bots. Basically it blocks Ahrefs and Majestic and a couple of others.
Code:
SetEnvIfNoCase User-Agent .*rogerbot.* bad_bot
SetEnvIfNoCase User-Agent .*exabot.* bad_bot
SetEnvIfNoCase User-Agent .*mj12bot.* bad_bot
SetEnvIfNoCase User-Agent .*dotbot.* bad_bot
SetEnvIfNoCase User-Agent .*gigabot.* bad_bot
SetEnvIfNoCase User-Agent .*ahrefsbot.* bad_bot
SetEnvIfNoCase User-Agent .*sitebot.* bad_bot
<Limit GET POST HEAD>
Order Allow,Deny
Allow from all
Deny from env=bad_bot
</Limit>
 
Last edited:
thanks alot for your help. Do I use a wordpress plugin or directly paste in that code for each of my sites via cpanel
 
put in a 404 redirect plugin
Its free
that passes all the links to front page
 
I'd recommend backing up your data frequently. There's this one backup plugin available in the wordpress plugin search utility. I can't remember the one i used to use but there should be a ton. Sort it by ratings and you should find your winner.
 
Back
Top