伪静态引起robots出错
网络整理 - 08-05
写的好好的robots怎么就是用谷歌的网站管理员工具读不出来,一直读的都是那个什么虚拟robots,原来……是伪静态惹的祸。
由于用的是ISAPI_REWRITE+httpd.ini在httpd.ini中添加RewriteRule /robots.txt /robots.txt [L]就可以了。
谷歌网站管理员工具地址
在论坛上问有关虚拟robots的事儿,好像懂的人不多。只说了个地址在wp-includes -> functions.php -> do_robots()
也看不太明白,这个有什么改的呢,怎么改呢。不过也没什么好研究的了,直接自己写robots就完了,注意伪静态问题哦:)
附:do_robots()
PHP代码
function do_robots() {
header( 'Content-Type: text/plain; charset=utf-8' );
do_action( 'do_robotstxt' );
$output = '';
$public = get_option( 'blog_public' );
if ( '0' == $public ) {
$output .= "User-agent: *\n";
$output .= "Disallow: /\n";
} else {
$output .= "User-agent: *\n";
$output .= "Disallow:\n";
}
echo apply_filters('robots_txt', $output, $public);
}