123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>404 页面丢失了</title>
- <link rel="stylesheet" href="/static/public/layui/css/layui.css">
- <!-- View Responsive -->
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- </head>
- <body>
- <div class="error">
- <p class="error-text error-text-f">404</p>
- <p class="error-text error-text-s">非常抱歉,您所问的页面不存在</p>
- <div style="text-align:center;padding-top: 10px;"><a href="/" class="layui-btn layui-btn-danger">返回首页</a></div>
- </div>
- <style>
- .error-text {
- text-align: center;
- }
- .error-text-f {
- font-size: 200px;
- margin: 0;
- }
- .error-text-s {
- font-size: 30px;
- }
- body {
- color: #666666;
- }
- </style>
- <script>
- //{php}think\Log::log('404');{/php}
- //{php}if(input('server.HTTP_REFERER'))think\Log::log('referer='.input('server.HTTP_REFERER'));{/php}
- if (top != self) {
- top.gologin();
- }
- </script>
- </body>
- </html>
|