对于那些将WordPress用作其站点CMS的用户,只需删除机器人即可绕过web托管服务器规则。txt文件,并修改WordPress生成的虚拟文件。您只需在函数中添加一个过滤器。主题的php文件。
下面是代码片段:
//* Append directives to the virtual robots.txt
add_filter( \'robots_txt\', \'robots_mod\', 10, 2 );
function robots_mod( $output, $public ) {
$output .= "Disallow: /wp-content/plugins/\\nSitemap: http://www.example.com/sitemap_index.xml";
return $output;
}
您所要做的就是用自己的指令修改$输出。