7 lines
172 B
PHP
7 lines
172 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Zen\Robots\Controllers\Generate;
|
||
|
|
|
||
|
|
Route::get('robots.txt', function () {
|
||
|
|
return Response::make(Generate::robots())->header("Content-Type", "text/plain");
|
||
|
|
});
|