플러그인을 만들어서 아래 코드를 입력한다.
[code]
# 사용자정의 robots.txt 만들기
function fbn_custom_robots( $output, $public ) {
$site_id = get_current_blog_id();
$output .= “Allow: /wp-content/uploads/\n”;
$output .= “Disallow: /readme.html\n”;
$output .= “\nSitemap: “.site_url().”/sitemap_index.xml”;
return $output;
}
add_filter( ‘robots_txt’, ‘fbn_custom_robots’, 20, 2 );
[/code]