TaoLer/app/index/controller/Error.php

13 lines
233 B
PHP

<?php
namespace app\index\controller;
use think\facade\View;
use app\common\controller\BaseController;
class Error extends BaseController
{
public function __call($method, $args)
{
return View::fetch('error/404');
}
}