16 lines
232 B
PHP
16 lines
232 B
PHP
<?php
|
|
|
|
class ServicesHandler extends request_handler {
|
|
|
|
function GET_robots_txt() {
|
|
$txt = <<<TXT
|
|
User-agent: *
|
|
Disallow: /admin
|
|
TXT;
|
|
|
|
header('Content-Type: text/plain');
|
|
echo $txt;
|
|
exit;
|
|
}
|
|
|
|
} |