2017-04-26 13:39:35 +00:00
|
|
|
<?php
|
2017-04-30 04:01:26 +00:00
|
|
|
|
2017-04-26 13:39:35 +00:00
|
|
|
/**
|
2017-04-26 15:09:10 +00:00
|
|
|
* @file mod/robots_text.php
|
|
|
|
* @brief Module which returns the default robots.txt
|
|
|
|
* @version 0.1.2
|
2017-04-26 13:39:35 +00:00
|
|
|
*/
|
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-04-26 15:09:10 +00:00
|
|
|
|
2017-04-26 13:39:35 +00:00
|
|
|
/**
|
2017-04-26 15:26:13 +00:00
|
|
|
* @brief Return default robots.txt when init
|
2017-04-26 15:07:24 +00:00
|
|
|
* @param App $a
|
|
|
|
* @return void
|
2017-04-26 13:39:35 +00:00
|
|
|
*/
|
2017-04-26 15:26:13 +00:00
|
|
|
function robots_txt_init(App $a)
|
|
|
|
{
|
2018-01-15 13:05:12 +00:00
|
|
|
$allDisalloweds = [
|
2017-04-26 15:26:13 +00:00
|
|
|
'/settings/',
|
|
|
|
'/admin/',
|
|
|
|
'/message/',
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2017-04-26 13:39:35 +00:00
|
|
|
|
2017-04-26 15:26:13 +00:00
|
|
|
header('Content-Type: text/plain');
|
2017-04-30 04:01:26 +00:00
|
|
|
echo 'User-agent: *' . PHP_EOL;
|
2017-04-26 15:26:13 +00:00
|
|
|
foreach ($allDisalloweds as $disallowed) {
|
2017-04-30 04:01:26 +00:00
|
|
|
echo 'Disallow: ' . $disallowed . PHP_EOL;
|
2017-04-26 15:07:24 +00:00
|
|
|
}
|
2018-12-26 05:40:12 +00:00
|
|
|
exit();
|
2017-04-26 13:39:35 +00:00
|
|
|
}
|