可在application/config.php中添加下面的代码
'http_exception_template' => [404 =>'./404.html'],
还可以定义其它的HTTP status 401 => APP_PATH.'401.html', 403 => APP_PATH.'404.html'
原代码为
'http_exception_template' => [ // 定义404错误的重定向页面地址 404 => APP_PATH.'404.html', // 还可以定义其它的HTTP status 401 => APP_PATH.'401.html', 403 => APP_PATH.'404.html', ],