Serve robots.txt as text/plain. Props JeremyVisser. fixes #4037

git-svn-id: http://svn.automattic.com/wordpress/trunk@5117 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-03-27 16:44:36 +00:00
parent 5520239138
commit 3d9418194f
1 changed files with 3 additions and 0 deletions

View File

@ -982,7 +982,10 @@ function do_feed_atom($for_comments) {
}
function do_robots() {
header('Content-type: text/plain; charset=utf-8');
do_action('do_robotstxt');
if ( '0' == get_option('blog_public') ) {
echo "User-agent: *\n";
echo "Disallow: /\n";