update 404.html

This commit is contained in:
afc163 2015-10-19 19:50:55 +08:00
parent 16500c9936
commit 704c8dbacc

View File

@ -1 +1,6 @@
<script>location.href = '/'</script>
<p>找不到此页,三秒后返回首页...</p>
<script>
setTimeout(function() {
location.href = '/';
}, 3000);
</script>