HTML 및 BODY 요소로 둘러싸여 있다고 생각하는 이유가 무엇인가요?
use Dancer;
get '/robots.txt' => sub {
return "User-agent: *\nDisallow: /\n";
};
dance;
출력 :
>lwp-request -e http://127.0.0.1:3000/robots.txt
200 OK
Server: Perl Dancer 1.3112
Content-Length: 26
Content-Type: text/html
Client-Date: Mon, 29 Apr 2013 05:05:32 GMT
Client-Peer: 127.0.0.1:3000
Client-Response-Num: 1
X-Powered-By: Perl Dancer 1.3112
User-agent: *
Disallow:/
난 당신이 text/html
의 Content-Type 헤더를보고에 사람들을 추가하는 렌더러를 사용하는 클라이언트와 함께 vieweing있어 내기. 콘텐츠 유형을 text/plain
으로 설정하면 파일을 보는 데 사용하는 렌더러에서 더 적합 해 보입니다.
get '/robots.txt' => sub {
content_type 'text/plain';
return "User-agent: *\nDisallow: /\n";
};
궁극적으로, 그것은 아무런 효과가 없어야합니다.
아, 맞습니다. 그건 내 실수였습니다. 답변 해주셔서 감사합니다! – Justin