wordpress 동적 robots.txt 수정하기 > IT 기술백서

플러그인을 만들어서 아래 코드를 입력한다.

 

[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]

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤