Move mod/robots_txt to src/Module/RobotsTxt

This commit is contained in:
Philipp Holzer 2019-05-05 19:06:51 +02:00
parent 155d541860
commit 510c150156
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
3 changed files with 28 additions and 30 deletions

27
src/Module/RobotsTxt.php Normal file
View file

@ -0,0 +1,27 @@
<?php
namespace Friendica\Module;
use Friendica\BaseModule;
/**
* Return the default robots.txt
*/
class RobotsTxt extends BaseModule
{
public static function rawContent()
{
$allDisalloweds = [
'/settings/',
'/admin/',
'/message/',
];
header('Content-Type: text/plain');
echo 'User-agent: *' . PHP_EOL;
foreach ($allDisalloweds as $disallowed) {
echo 'Disallow: ' . $disallowed . PHP_EOL;
}
exit();
}
}