1 Star 0 Fork 0

moxiaonai/bluma

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
404.php 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
wuwenjing 提交于 2018-03-21 21:57 . 'mm'
<?php
/**
* 自定义404页面
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title>404错误页面</title>
<style type="text/css" media="screen">
*{margin:0;padding:0;font-family:arial,sans-serif;font-size:14px;}
body,html{height:100%;}
body{background:url(content/templates/moxiaonai/images/bg.jpg);}
.wrapper{margin: 0 auto; background:#fff url(content/moxiaonai/bowen/images/404.png) no-repeat center; width:254px; height:103px; padding:0px; top:50%; margin-top:-150px; position:relative;}
.zi1{font-weight:700; font-size:16px; margin: 0px; padding: 28px 15px 0px 27px;}
.tm{padding:15px 10px 0px 15px;}
.tm span{color:#e10602; padding:0 5px; font-weight:700;}
</style>
</head>
<body>
<div class="wrapper">
<div class="zi1">该页未找到,即将转首页。</div>
<p class="tm"><span id="time">5</span>秒内自动跳转...
&nbsp; <a id="Btn" href="/">前往本站首页</a></p>
</div>
<script type="text/javascript">
function sendStats(url){
var n = "log_"+ (new Date()).getTime();
var c = window[n] = new Image();
c.onload = (c.onerror=function(){window[n] = null;});
c.src = '/' + url;
c = null;
}
var time = document.getElementById('time');
var btn = document.getElementById('Btn');
function count(){
if( +time.innerHTML > 0 ){
time.innerHTML = time.innerHTML - 1;
}else{
sendStats('gotobaidu');
location.href = btn.href;
}
}
setInterval(count , 1000);
btn.onclick = function(){
sendStats('gotobaidu');
};
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/moxiaonai/bluma.git
[email protected]:moxiaonai/bluma.git
moxiaonai
bluma
bluma
master

搜索帮助