Files
2026-06-20 04:47:34 +08:00

21 lines
309 B
PHP
Executable File

<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
return 404;
// return $this->view->fetch();
}
}