Files

21 lines
309 B
PHP
Raw Permalink Normal View History

2026-05-28 00:32:43 +08:00
<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
2026-06-20 04:47:34 +08:00
return 404;
// return $this->view->fetch();
2026-05-28 00:32:43 +08:00
}
}