// +---------------------------------------------------------------------- declare(strict_types=1); namespace addon\seo\controller; use ywxapp\controller\FrontendBase; use think\Response; /** * SEO增强前台控制器 * * 对外提供站点地图、robots 与状态页。无需登录即可访问。 */ class Index extends FrontendBase { protected $noNeedLogin = ['*']; protected $noNeedVerify = ['*']; /** * 前台状态页 */ public function index() { // TODO: 前台展示/状态页 $this->view->assign('title', 'SEO增强'); return $this->view->fetch('index/index'); } /** * 站点地图(/seo/sitemap.xml) */ public function sitemap() { // TODO: 遍历站点 URL 生成符合 sitemaps.org 规范的 XML $xml = '' . ''; return Response::create($xml, 'xml')->contentType('application/xml'); } /** * robots.txt(/seo/robots.txt) */ public function robots() { // TODO: 读取 wxapp_seo_config.robots 输出;此处为默认兜底 $txt = "Member-agent: *\nAllow: /"; return Response::create($txt)->contentType('text/plain'); } }