TP5 设置自定义404,错误提示页面

1, 更改tp5 config.php配置

    // +----------------------------------------------------------------------
    // | 异常及错误设置
    // +----------------------------------------------------------------------

    // 异常页面的模板文件
    'exception_tmpl'         => THINK_PATH . 'tpl' . DS . 'think_exception.tpl',

    // 错误显示信息,非调试模式有效
    'error_message'          => '',
    // 显示错误信息
    'show_error_msg'         => false,
    // 异常处理handle类 留空使用 \think\exception\Handle
    'exception_handle'       => '',
    'http_exception_template'=> [404 =>  APP_PATH.'404.html',403 =>  APP_PATH.'403.html',],

2, 更改 thinphp\tpl\think_exception.tpl

默认错误提示:

 

自定义错误提示:


        

 

你可能感兴趣的:(tp5)