Merge pull request #3393 from Shnoulle/develop_feature3334

Simple robots.txt for server 404 log
pull/3397/head
Tobias Diekershoff 2017-04-27 07:23:01 +02:00 committed by GitHub
commit ae580e5829
1 changed files with 30 additions and 0 deletions

30
mod/robots_txt.php Normal file
View File

@ -0,0 +1,30 @@
<?php
/**
* @file mod/robots_text.php
* @brief Module which returns the default robots.txt
* @version 0.1.2
*/
/**
* @brief Return default robots.txt when init
* @param App $a
* @return void
*/
function robots_txt_init(App $a)
{
/** @var string[] globally disallowed url */
$allDisalloweds = array(
'/settings/',
'/admin/',
'/message/',
);
header('Content-Type: text/plain');
echo 'User-agent: *'.PHP_EOL;
foreach ($allDisalloweds as $disallowed) {
echo 'Disallow: '.$disallowed.PHP_EOL;
}
killme();
}