修改 config.app 文件
第一,需要关闭调试模式
// 应用调试模式'app_debug' => false,
一般在项目的开发过程中,可以设置为"true",但是项目上线部署后,一定要关闭调试模式
'http_exception_template' => [ // 定义404错误的重定向页面地址 404 => APP_PATH . 'index/view/exception_html/404.html', 500 => APP_PATH . 'index/view/exception_html500.html', ],
//TODO 自定义异常请求码的页面配置 建议只做非500错误页面 'http_exception_template' => [ 404 => Env::get('app_path') . 'index/view/exception_html/404.html', 500 => Env::get('app_path') . 'index/view/exception_html/500.html', ],