博客列表 >tp5.0 添加 404 页面

tp5.0 添加 404 页面

技术宅的博客
技术宅的博客原创
2019年04月03日 10:55:182446浏览
hui 模板自带的404页面
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>404</title>
    <link rel="stylesheet" type="text/css" href="__hui__/static/h-ui/css/H-ui.min.css" />
    <link rel="stylesheet" type="text/css" href="__hui__/lib/Hui-iconfont/1.0.8/iconfont.css" />
</head>
<body>
    <article class="page-404 minWP text-c">
    <p><i class="Hui-iconfont va-m">&#xe688;</i>
        <span>404</span>
    </p>
    <p>不好意思,您访问的页面不存在~</p>
    <p>您可以:
        <a href="javascript:;" onclick="history.go(-1)">&lt; 返回上一页</a>
        <span>|</span>
        <a href="/" class="c-primary ml-20">去首页 &gt;</a>
    </p>
</article>
</body>
</html>
config.php 配置文件 
关闭调试模式
需要自己定义参数 路径就是这个路径index/view/exception/404.html
 // 定义404错误的重定向页面地址 tp5.0设置
    'http_exception_template'    =>  [
        404 =>  APP_PATH . 'index/view/exception/404.html',
    ],
// tp5.1设置
    'http_exception_template'    =>
        [
            404 =>  Env::get('app_path') . 'index/view/exception/404.html',
        ],


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议