您不需要添加robots.txt
文件的根目录。robots.txt
文件在您访问时实时生成http://mysite.com/robots.txt
. 负责创建此文件的函数是do_robots
.
如果您希望添加自己的指令,只需为robots_txt
过滤器,如下所示:
add_filter( \'robots_txt\', \'wpse8170_my_robots_txt\', 10, 2 );
function wpse8170_my_robots_txt( $output, $public ) {
if ( \'0\' != $public ) {
$output .= \'
Disallow: /wp-content/plugins
Disallow: /wp-content/cache
Disallow: /wp-content/themes
\';
}
return $output;
}