aixindao / aixindao.github.io

BLOG
0 stars 0 forks source link

404页面转跳到首页html #1

Open aixindao opened 2 weeks ago

aixindao commented 2 weeks ago
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>404 页面未找到</title>
    <meta http-equiv="refresh" content="1;url=/"> <!-- 设置1秒后跳转到首页 -->
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            padding-top: 100px;
            background-color: #f2f2f2;
        }

        h1 {
            color: #333;
        }

        p {
            color: #666;
            font-size: 16px;
        }
    </style>
</head>
<body>
    <h1>404 页面未找到</h1>
    <p>对不起,您请求的页面不存在或已被删除。</p>
    <p>请检查您的URL是否正确,或者返回<a href="/">首页</a>。</p>
    <p>如果您认为这是一个错误,请联系网站管理员。</p>
</body>
</html>
aixindao commented 2 weeks ago

显示代码块 ``` 代码 ```