19 lines
365 B
PHP
19 lines
365 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
// Send proper headers
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
header('Cache-Control: public, max-age=604800');
|
|
|
|
// Use $config['base_url'] as-is
|
|
$baseUrl = $config['base_url'];
|
|
|
|
echo <<<TXT
|
|
# robots.txt for sites powered by Novaconium framework
|
|
|
|
User-agent: *
|
|
Disallow: /novaconium/
|
|
|
|
Sitemap: {$baseUrl}/sitemap.xml
|
|
TXT;
|