php | wordpress 동적 robots.txt 수정하기
페이지 정보
- 작성자:
- 핵탐
- 작성일
- 11.10 16:04
- 조회
- 1,593
- 댓글
- 0
본문
플러그인을 만들어서 아래 코드를 입력한다.
[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]
댓글 0개
등록된 댓글이 없습니다.