新增404页面,访问已删除的书页/目录页/内容页自动跳转到404页面

This commit is contained in:
xiongxiaoyang
2020-12-24 16:26:21 +08:00
parent f61c252e71
commit c9f1500976
5 changed files with 67 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Not Found</title>
<script>
setTimeout(function () {
location.href = '/';
},3000)
</script>
</head>
<body style="background: url(/images/404.jpeg) no-repeat;" >
</body>
</html>