thinkphp6、thinkphp8 自定义异常显示页面

2024-11-22 112 0

进入 config/app.php 里面,增加下面的信息

 // 异常页面的模板文件
    'exception_tmpl'   => app()->isDebug()==true ?
                          app()->getThinkPath() . 'tpl/think_exception.tpl' :
                          \think\facade\App::getAppPath() . 'error.html',
    
    'http_exception_template' => [
        // 定义404错误的模板文件地址
        404 => \think\facade\App::getAppPath() . '404.html',
        // 还可以定义其它的HTTP status
        500 => \think\facade\App::getAppPath() . '500.html',
    ],

 

我本人的代码是:

 // 异常页面的模板文件
    'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',

    //指定404页面
    'http_exception_template' => [
        404 => app()->getRootPath() . '/view/index/404.html', // 指定404错误的模板文件
        // 可以继续添加其他HTTP状态码和模板
    ],

 

    相关文章

    织音云上新香港Platinum 8358处理器性能怪兽,爆炸高配折后最低仅需32元/月,数据对标物理机
    2025年华纳云新年焕新季,香港云4H4G3M特惠696元/年,E5物理服务器688元/月起
    莱卡云:2025年1月香港云服务器、美国云服务器、日本云服务器促销活动
    ThinkPHP6多应用多语言切换,最佳解决方案
    thinkphp thinkphp6 安装JWT
    php使用ip-api根据ip地扯获取位置信息

    发布评论