有几个机器人。txt生成器联机。这里是one of my favorites. 生成文件后,我强烈建议使用Google\'s Webmaster Tools 测试仪。
我已经在几十个网站上做过这个,从来没有遇到过问题。
请记住以下几点:
大多数Wordpress网站将类别视为文件夹/目录。所以,要为breads 类别,您可能需要/topics/breads/,或/category/breads/,甚至/cat/breads/。。。取决于网站的设置如果您仍然有问题,您可以默认拒绝所有。然后,您必须明确允许您要建立索引的每个类别/文件夹/主题/等EDIT谷歌provides the following recommendation, 这对我也很有用:
//To prevent only most web crawlers from indexing a page:
<meta name="robots" content="noindex">
-或-
//To prevent only Google web crawlers from indexing a page:
<meta name="googlebot" content="noindex">
EDIT我建议您使用类别模板。这
WPBeginner Article 说明如何创建它们,以防您以前没有这样做。基本上,您通常会从将“index.php”或“page.php”复制到新的“category.php”文件开始。然后,做几个简单的编辑。
根据应该忽略多少类别,我的典型建议可能是创建一个类别。php模板,然后在模板中使用如下“If”语句:
// noIndex = list of categories that should be ignored by bots
$noIndex = array(\'cats\',\'rats\',\'bats\',...);
// current_category = category of the page currently being prepared
$current_category = get_the_category();
// If the current_category is in the list of those to be ignored...
if ( in_array($current_category, $noIndex) ){
// add a filter to insert the meta tag
function ignore_category_indexing() {
echo \'<meta name="robots" content="noindex" />\';
}
add_action( \'wp_head\', \'ignore_category_indexing\' );
}
祝你好运!
P、 如果这对你有用,我可以投赞成票。。