控制器 controller
robots.php
public function index()
{
$site_robots = "*";
$this->assign('site_robots', $site_robots);
return response($this->fetch(), 200, ['content-type' => '']);
}
HTML页面
robots.html
{$site_robots}
路由 route
route.php
/* robots.txt */
'robots' => ['robots/index', ['method' => 'get', 'ext' => 'txt']],