一个粉的宝塔默认页面系列

一个粉的宝塔默认页面系列

2025年1月31日星期五 · #资源推荐 分享 · 2509 字 13 分钟 ·
-浏览量
·
简介

一个粉的宝塔默认页面系列

1.站点搭建成功提示#

1768750745561_edit_723285037835753.jpg
1768750745561_edit_723285037835753.jpg

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>站点搭建成功 ✧(≖ ◡ ≖✿)</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei", "PingFang SC", sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
/* 可爱漂浮装饰 */
.decor {position: absolute;pointer-events: none;z-index: 0;}
.decor1 {top: 20%;left: 10%;font-size: 24px;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor2 {bottom: 15%;right: 15%;font-size: 18px;color: #ffb3c6;animation: float 8s infinite ease-in-out 2s;}
.decor3 {top: 60%;left: 20%;font-size: 20px;color: #ff99cc;animation: float 7s infinite ease-in-out 1s;}
@keyframes float {
0% {transform: translateY(0) rotate(0deg);}
50% {transform: translateY(-15px) rotate(5deg);}
100% {transform: translateY(0) rotate(0deg);}
}
/* 宝塔原生风格容器 */
.box {
background: #fff;
padding: 40px 20px;
border-radius: 16px;
box-shadow: 0 3px 15px rgba(255,153,204,0.2);
text-align: center;
max-width: 400px;
width: 100%;
position: relative;
z-index: 1;
border: 2px solid #ffd6e0;
}
/* 可爱成功图标(替换原svg) */
.success-icon {
width: 64px;
height: 64px;
margin: 0 auto 20px;
position: relative;
}
.success-icon::before {
content: "✧";
font-size: 64px;
color: #ff6699;
animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
from {transform: scale(1);}
to {transform: scale(1.1);}
}
h1 {
font-size: 22px; /* 手机端缩小字体 */
color: #ff6699;
margin: 0 0 16px;
font-weight: 600;
text-shadow: 0 1px 3px rgba(255,102,153,0.15);
letter-spacing: 0.5px; /* 微调字间距,避免换行 */
}
/* 响应式标题优化:小屏幕进一步缩小颜文字占比 */
@media (max-width: 375px) {
h1 {
font-size: 20px;
padding: 0 10px; /* 增加左右内边距,给文字更多空间 */
}
h1 span {
font-size: 18px; /* 颜文字单独缩小 */
}
}
p {
color: #999;
font-size: 15px;
line-height: 1.6;
margin-bottom: 28px;
}
/* 按钮样式(粉嫩主题) */
a {
display: inline-block;
padding: 12px 30px;
background: #ff99cc;
color: #fff;
text-decoration: none;
border-radius: 30px;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(255,153,204,0.2);
}
a:hover {
background: #ff6699;
box-shadow: 0 4px 12px rgba(255,102,153,0.3);
transform: translateY(-2px);
}
/* 底部版权 */
.footer {
font-size: 12px;
color: #ffb3c6;
margin-top: 30px;
letter-spacing: 0.5px;
}
.footer::after {
content: " ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";
}
</style>
</head>
<body>
<!-- 可爱漂浮装饰 -->
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="box">
<div class="success-icon"></div>
<!-- 标题拆分颜文字,方便响应式调整 -->
<h1>站点搭建成功啦 <span>✧(≖ ◡ ≖✿)</span></h1>
<p>粉嫩小站已就绪,快去探索更多可爱玩法吧~</p>
<a href="https://www.bt.cn/" target="_blank">官方文档</a>
<div class="footer">© 宝塔面板 服务器管理工具</div>
</div>
</body>
</html>

2.404提示页面#

1768750993209.webp
1768750993209.webp

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面走丢啦 ✧(≖ ◡ ≖✿)</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei", "PingFang SC", sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
/* 可爱漂浮装饰 */
.decor {position: absolute;pointer-events: none;z-index: 0;}
.decor1 {top: 20%;left: 10%;font-size: 24px;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor2 {bottom: 15%;right: 15%;font-size: 18px;color: #ffb3c6;animation: float 8s infinite ease-in-out 2s;}
.decor3 {top: 60%;left: 20%;font-size: 20px;color: #ff99cc;animation: float 7s infinite ease-in-out 1s;}
.decor4 {top: 30%;right: 20%;font-size: 22px;color: #ffc2d1;animation: float 9s infinite ease-in-out 1.5s;}
@keyframes float {
0% {transform: translateY(0) rotate(0deg);}
50% {transform: translateY(-15px) rotate(5deg);}
100% {transform: translateY(0) rotate(0deg);}
}
/* 宝塔原生风格容器 */
.box {
background: #fff;
padding: 40px 20px;
border-radius: 16px;
box-shadow: 0 3px 15px rgba(255,153,204,0.2);
text-align: center;
max-width: 400px;
width: 100%;
position: relative;
z-index: 1;
border: 2px solid #ffd6e0;
}
/* 404可爱图标 */
.error-icon {
width: 64px;
height: 64px;
margin: 0 auto 20px;
position: relative;
}
.error-icon::before {
content: "404";
font-size: 64px;
color: #ff6699;
font-weight: 700;
animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
from {transform: scale(1);}
to {transform: scale(1.1);}
}
h1 {
font-size: 22px;
color: #ff6699;
margin: 0 0 16px;
font-weight: 600;
text-shadow: 0 1px 3px rgba(255,102,153,0.15);
letter-spacing: 0.5px;
}
/* 手机小屏响应式优化 */
@media (max-width: 375px) {
h1 {
font-size: 20px;
padding: 0 10px;
}
h1 span {
font-size: 18px;
}
}
p {
color: #999;
font-size: 15px;
line-height: 1.6;
margin-bottom: 28px;
padding: 0 10px;
}
/* 粉嫩返回按钮 */
a {
display: inline-block;
padding: 12px 30px;
background: #ff99cc;
color: #fff;
text-decoration: none;
border-radius: 30px;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(255,153,204,0.2);
}
a:hover {
background: #ff6699;
box-shadow: 0 4px 12px rgba(255,102,153,0.3);
transform: translateY(-2px);
}
/* 底部版权 */
.footer {
font-size: 12px;
color: #ffb3c6;
margin-top: 30px;
letter-spacing: 0.5px;
}
.footer::after {
content: " ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";
}
</style>
</head>
<body>
<!-- 可爱漂浮装饰 -->
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="decor decor4">🌸</div>
<div class="box">
<div class="error-icon"></div>
<h1>页面走丢啦 <span>✧(≖ ◡ ≖✿)</span></h1>
<p>糟糕!你访问的页面迷路了,快回到首页找找它吧~</p>
<a href="/" target="_self">返回首页</a>
<div class="footer">© 宝塔面板 服务器管理工具</div>
</div>
</body>
</html>

3.没有页面提示#

1768883892665.webp
1768883892665.webp

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>没有找到站点 - 宝塔面板</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei", "PingFang SC", sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
.decor {position: absolute;pointer-events: none;z-index: 0;}
.decor1 {top: 20%;left: 10%;font-size: 24px;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor2 {bottom: 15%;right: 15%;font-size: 18px;color: #ffb3c6;animation: float 8s infinite ease-in-out 2s;}
.decor3 {top: 60%;left: 20%;font-size: 20px;color: #ff99cc;animation: float 7s infinite ease-in-out 1s;}
.decor4 {top: 30%;right: 20%;font-size: 22px;color: #ffc2d1;animation: float 9s infinite ease-in-out 1.5s;}
@keyframes float {
0% {transform: translateY(0) rotate(0deg);}
50% {transform: translateY(-15px) rotate(5deg);}
100% {transform: translateY(0) rotate(0deg);}
}
.box {
background: #fff;
padding: 40px 20px;
border-radius: 16px;
box-shadow: 0 3px 15px rgba(255,153,204,0.2);
text-align: left;
max-width: 480px;
width: 100%;
position: relative;
z-index: 1;
border: 2px solid #ffd6e0;
}
.error-icon {
width: 64px;
height: 64px;
margin: 0 auto 20px;
position: relative;
text-align: center;
}
.error-icon::before {
content: "!";
font-size: 64px;
color: #ff6699;
font-weight: 700;
animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
from {transform: scale(1);}
to {transform: scale(1.1);}
}
h1 {
font-size: 22px;
color: #ff6699;
margin: 0 0 16px;
font-weight: 600;
text-shadow: 0 1px 3px rgba(255,102,153,0.15);
letter-spacing: 0.5px;
text-align: center;
}
@media (max-width: 375px) {
h1 {font-size: 20px;padding: 0 10px;}
.content p, .content li {font-size: 14px;}
}
.t1 {
color: #999;
font-size: 15px;
line-height: 1.6;
margin-bottom: 20px;
padding: 0 10px;
text-align: center;
}
.t2 {
font-size: 16px;
color: #ff6699;
margin: 0 0 10px 10px;
font-weight: 500;
}
.content ol {
padding: 0 30px;
margin-bottom: 20px;
}
.content li {
color: #666;
font-size: 15px;
line-height: 1.8;
margin-bottom: 6px;
}
a {
display: inline-block;
padding: 12px 30px;
background: #ff99cc;
color: #fff;
text-decoration: none;
border-radius: 30px;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(255,153,204,0.2);
margin: 0 auto;
display: block;
width: fit-content;
}
a:hover {
background: #ff6699;
box-shadow: 0 4px 12px rgba(255,102,153,0.3);
transform: translateY(-2px);
}
.footer {
font-size: 12px;
color: #ffb3c6;
margin-top: 30px;
letter-spacing: 0.5px;
text-align: center;
}
.footer::after {
content: " ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";
}
</style>
</head>
<body>
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="decor decor4">🌸</div>
<div class="box">
<div class="error-icon"></div>
<h1>没有找到站点 ✧(≖ ◡ ≖✿)</h1>
<div class="content">
<p class="t1">您的请求在Web服务器中没有找到对应的站点!</p>
<p class="t2">可能原因:</p>
<ol>
<li>您没有将此域名或IP绑定到对应站点!</li>
<li>配置文件未生效!</li>
</ol>
<p class="t2">如何解决:</p>
<ol>
<li>检查是否已经绑定到对应站点,若确认已绑定,请尝试重载Web服务;</li>
<li>检查端口是否正确;</li>
<li>若您使用了CDN产品,请尝试清除CDN缓存;</li>
<li>普通网站访客,请联系网站管理员;</li>
</ol>
</div>
<a href="/" target="_self">返回首页</a>
<div class="footer">© 宝塔面板 服务器管理工具</div>
</div>
</body>
</html>

4.服务已停止#

1768883894216.webp
1768883894216.webp

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>服务已停止使用 - 宝塔面板</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei", "PingFang SC", sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
.decor {position: absolute;pointer-events: none;z-index: 0;}
.decor1 {top: 20%;left: 10%;font-size: 24px;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor2 {bottom: 15%;right: 15%;font-size: 18px;color: #ffb3c6;animation: float 8s infinite ease-in-out 2s;}
.decor3 {top: 60%;left: 20%;font-size: 20px;color: #ff99cc;animation: float 7s infinite ease-in-out 1s;}
.decor4 {top: 30%;right: 20%;font-size: 22px;color: #ffc2d1;animation: float 9s infinite ease-in-out 1.5s;}
@keyframes float {
0% {transform: translateY(0) rotate(0deg);}
50% {transform: translateY(-15px) rotate(5deg);}
100% {transform: translateY(0) rotate(0deg);}
}
.box {
background: #fff;
padding: 40px 20px;
border-radius: 16px;
box-shadow: 0 3px 15px rgba(255,153,204,0.2);
text-align: left;
max-width: 480px;
width: 100%;
position: relative;
z-index: 1;
border: 2px solid #ffd6e0;
}
.error-icon {
width: 64px;
height: 64px;
margin: 0 auto 20px;
position: relative;
text-align: center;
}
.error-icon::before {
content: "⊗";
font-size: 64px;
color: #ff6699;
font-weight: 700;
animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
from {transform: scale(1);}
to {transform: scale(1.1);}
}
h1 {
font-size: 22px;
color: #ff6699;
margin: 0 0 16px;
font-weight: 600;
text-shadow: 0 1px 3px rgba(255,102,153,0.15);
letter-spacing: 0.5px;
text-align: center;
}
@media (max-width: 375px) {
h1 {font-size: 20px;padding: 0 10px;}
.content p, .content li {font-size: 14px;}
}
.t1 {
color: #999;
font-size: 15px;
line-height: 1.6;
margin-bottom: 20px;
padding: 0 10px;
text-align: center;
}
.t2 {
font-size: 16px;
color: #ff6699;
margin: 0 0 10px 10px;
font-weight: 500;
}
.content ol {
padding: 0 30px;
margin-bottom: 20px;
}
.content li {
color: #666;
font-size: 15px;
line-height: 1.8;
margin-bottom: 6px;
}
a {
display: inline-block;
padding: 12px 30px;
background: #ff99cc;
color: #fff;
text-decoration: none;
border-radius: 30px;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(255,153,204,0.2);
margin: 0 auto;
display: block;
width: fit-content;
}
a:hover {
background: #ff6699;
box-shadow: 0 4px 12px rgba(255,102,153,0.3);
transform: translateY(-2px);
}
.footer {
font-size: 12px;
color: #ffb3c6;
margin-top: 30px;
letter-spacing: 0.5px;
text-align: center;
}
.footer::after {
content: " ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";
}
</style>
</head>
<body>
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="decor decor4">🌸</div>
<div class="box">
<div class="error-icon"></div>
<h1>服务已停止使用 ✧(≖ ◡ ≖✿)</h1>
<div class="content">
<p class="t1">当前站点/服务已正式停止使用,暂无法提供访问服务</p>
<p class="t2">可能原因:</p>
<ol>
<li>站点到期未续费、主体信息变更导致服务终止;</li>
<li>服务存在合规问题,按相关要求停止运营;</li>
<li>管理员主动注销站点,相关资源已清理;</li>
<li>功能迭代升级,原服务已下线并替换为新功能;</li>
</ol>
<p class="t2">相关建议:</p>
<ol>
<li>站点管理员可登录服务器面板,检查站点配置及资源状态;</li>
<li>确认站点备案/主体信息是否有效,及时完成更新或续费;</li>
<li>普通访客可联系站点运营方,获取服务最新动态;</li>
<li>若为功能下线,可前往平台首页查看替代功能及使用指引;</li>
</ol>
</div>
<a href="/" target="_self">返回首页</a>
<div class="footer">© 宝塔面板 服务器管理工具</div>
</div>
</body>
</html>

5.域名停靠待启用#

1769511780324.webp
1769511780324.webp

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>站点待启用 ✧(≖ ◡ ≖✿)</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei","PingFang SC",sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
.decor {position: absolute;pointer-events: none;z-index: 0;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor1 {top:20%;left:10%;font-size:24px;}
.decor2 {bottom:15%;right:15%;font-size:18px;color:#ffb3c6;animation-delay:2s;animation-duration:8s;}
.decor3 {top:60%;left:20%;font-size:20px;color:#ff99cc;animation-delay:1s;animation-duration:7s;}
.decor4 {top:30%;right:20%;font-size:22px;color:#ffc2d1;animation-delay:1.5s;animation-duration:9s;}
@keyframes float {0%{transform:translateY(0)rotate(0deg);}50%{transform:translateY(-15px)rotate(5deg);}100%{transform:translateY(0)rotate(0deg);}}
.box {background:#fff;padding:40px 20px;border-radius:16px;box-shadow:0 3px 15px rgba(255,153,204,0.2);text-align:center;max-width:400px;width:100%;position:relative;z-index:1;border:2px solid #ffd6e0;}
.error-icon {width:64px;height:64px;margin:0 auto 20px;}
.error-icon::before {content:"♡";font-size:64px;color:#ff6699;font-weight:700;animation:bounce 1.5s infinite alternate;}
@keyframes bounce {from{transform:scale(1);}to{transform:scale(1.1);}}
h1 {font-size:22px;color:#ff6699;margin:0 0 16px;font-weight:600;text-shadow:0 1px 3px rgba(255,102,153,0.15);letter-spacing:0.5px;}
p {color:#999;font-size:15px;line-height:1.6;margin-bottom:28px;padding:0 10px;}
a {display:inline-block;padding:12px 30px;background:#ff99cc;color:#fff;text-decoration:none;border-radius:30px;font-size:15px;transition:all 0.3s ease;box-shadow:0 2px 8px rgba(255,153,204,0.2);}
a:hover {background:#ff6699;box-shadow:0 4px 12px rgba(255,102,153,0.3);transform:translateY(-2px);}
.footer {font-size:12px;color:#ffb3c6;margin-top:30px;letter-spacing:0.5px;}
.footer::after {content:" ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";}
.cf-host {font-size:11px;color:#d8a8b8;margin-top:8px;}
@media(max-width:375px){h1{font-size:20px;padding:0 10px;}h1 span{font-size:18px;}}
</style>
</head>
<body>
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="decor decor4">🌸</div>
<div class="box">
<div class="error-icon"></div>
<h1>站点待启用 <span>✧(≖ ◡ ≖✿)</span></h1>
<p>该域名暂未搭建站点服务,暂未正式启用哦~ 敬请期待后续更新呀~</p>
<a href="javascript:history.back()" target="_self">返回上一页</a>
<div class="footer">© 站点维护中 敬请期待</div>
<div class="cf-host">托管在 Cloudflare | 由 Cloudflare CDN 提供加速与安全防护</div>
</div>
</body>
</html>

直接Cloudflare Workers托管的版本

addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
const html = `
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>站点待启用 ✧(≖ ◡ ≖✿)</title>
<style>
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei","PingFang SC",sans-serif;}
body {min-height: 100vh;display: flex;align-items: center;justify-content: center;background: #fff5f8;padding: 20px;position: relative;overflow: hidden;}
.decor {position: absolute;pointer-events: none;z-index: 0;color: #ffd6e0;animation: float 6s infinite ease-in-out;}
.decor1 {top:20%;left:10%;font-size:24px;}
.decor2 {bottom:15%;right:15%;font-size:18px;color:#ffb3c6;animation-delay:2s;animation-duration:8s;}
.decor3 {top:60%;left:20%;font-size:20px;color:#ff99cc;animation-delay:1s;animation-duration:7s;}
.decor4 {top:30%;right:20%;font-size:22px;color:#ffc2d1;animation-delay:1.5s;animation-duration:9s;}
@keyframes float {0%{transform:translateY(0)rotate(0deg);}50%{transform:translateY(-15px)rotate(5deg);}100%{transform:translateY(0)rotate(0deg);}}
.box {background:#fff;padding:40px 20px;border-radius:16px;box-shadow:0 3px 15px rgba(255,153,204,0.2);text-align:center;max-width:400px;width:100%;position:relative;z-index:1;border:2px solid #ffd6e0;}
.error-icon {width:64px;height:64px;margin:0 auto 20px;}
.error-icon::before {content:"♡";font-size:64px;color:#ff6699;font-weight:700;animation:bounce 1.5s infinite alternate;}
@keyframes bounce {from{transform:scale(1);}to{transform:scale(1.1);}}
h1 {font-size:22px;color:#ff6699;margin:0 0 16px;font-weight:600;text-shadow:0 1px 3px rgba(255,102,153,0.15);letter-spacing:0.5px;}
p {color:#999;font-size:15px;line-height:1.6;margin-bottom:28px;padding:0 10px;}
a {display:inline-block;padding:12px 30px;background:#ff99cc;color:#fff;text-decoration:none;border-radius:30px;font-size:15px;transition:all 0.3s ease;box-shadow:0 2px 8px rgba(255,153,204,0.2);}
a:hover {background:#ff6699;box-shadow:0 4px 12px rgba(255,102,153,0.3);transform:translateY(-2px);}
.footer {font-size:12px;color:#ffb3c6;margin-top:30px;letter-spacing:0.5px;}
.footer::after {content:" ✧ෆ◞◟˃̶̤⌄˂̶̤⋆biubiu";}
.cf-host {font-size:11px;color:#d8a8b8;margin-top:8px;}
@media(max-width:375px){h1{font-size:20px;padding:0 10px;}h1 span{font-size:18px;}}
</style>
</head>
<body>
<div class="decor decor1">✿</div>
<div class="decor decor2">★</div>
<div class="decor decor3">♡</div>
<div class="decor decor4">🌸</div>
<div class="box">
<div class="error-icon"></div>
<h1>站点待启用 <span>✧(≖ ◡ ≖✿)</span></h1>
<p>该域名暂未搭建站点服务,暂未正式启用哦~ 敬请期待后续更新呀~</p>
<a href="#" target="_self">返回到主站</a>
<div class="footer">© 站点维护中 敬请期待</div>
<div class="cf-host">托管在 Cloudflare | 由 Cloudflare CDN 提供加速与安全防护</div>
</div>
</body>
</html>
`;
return new Response(html, {
headers: {
'Content-Type': 'text/html;charset=UTF-8',
'Cache-Control': 'no-cache'
}
})
}
一个粉的宝塔默认页面系列
https://www.3181314.xyz/posts/一个粉的宝塔默认页面系列/
作者
Odd.G
发布于
2025-01-31
许可协议
CC BY-NC-SA 4.0

评论区

看板娘
公告
友链 互换友链

正在招募技术类博客友链,要求原创、稳定更新。点击了解更多。

查看详情
欢迎 关于我的介绍

欢迎来到我的博客,热爱技术、持续学习,欢迎同好交流探讨,也欢迎大佬互换友链。

查看详情
音乐
封面

音乐

暂未播放

0:00
0:00
暂无歌词
标签
# 分享 10 # 技术 3 # 博客 3 # 部署教程 3 # 教程 2 # 效率 1 # AI 1 # 生活感悟 1 # 人生思考 1 # WorkBuddy 1 # 腾讯智能体 1 # IM集成 1 # OpenClaw 1 # AI助手 1 # 本地部署 1 # 魔术 1 # 前端 1 # 春晚 1 # 源码 1 # 服务器监控 1 # Docker部署 1 # CloudFlare 1 # 哪吒监控 1 # 免费托管 1 # 静态网站 1 # 动态部署 1 # AI项目 1 # 建站工具 1 # 云服务器 1 # 虚拟主机 1 # Minecraft 1 # 服务端 1 # 备份教程 1 # 模组 1 # Shadowsocks 1 # Linux 1 # 一键脚本 1 # 代理 1 # 导航页 1 # EdgeOne 1 # 部署 1 # 静态应用 1 # Cloudflare 1 # 图床 1 # Mizuki 1 # Docker 1 # VPS 1 # 思考 1 # 博客搭建 1 # 关于 1 # 个人 1
目录
工具

隐私政策

更新日期: 2026 年 7 月 15 日
生效日期: 2026 年 7 月 15 日

适用范围#

本政策适用于 Qgxs的博客(以下简称“本站”)。本站是个人博客,用于发布和分享内容;不提供账户注册、支付、定位或广告投放服务。访问本站、发表文章评论或在留言板留言前,请阅读本政策。

信息收集与使用#

本站只在提供内容、评论和留言功能,以及维护站点安全所需的范围内处理信息。

  • 访问与统计信息:访问页面时,统计服务可能处理访问时间、页面地址、来源页、浏览器和设备相关信息,用于了解内容访问情况、排查故障和改进站点。
  • 评论信息:使用文章评论功能时,Waline 可能处理您主动提交的昵称、邮箱、站点链接和评论内容;还可能处理 IP 地址等必要信息,用于防止垃圾评论、滥用和维护服务安全。评论内容、昵称和站点链接(如填写)可能公开展示在文章下方;邮箱不会公开展示。
  • 留言信息:留言板使用 Waline /guestbook/ 频道。Waline 可能处理您主动提交的昵称、可选邮箱、站点链接、留言内容和图片,以及浏览器、操作系统、IP 地址等必要的反滥用信息。默认情况下,留言图片以内嵌数据随留言提交;如站点维护者配置了远程图片上传接口,图片会先发送至该接口并在留言中保存返回的图片地址。留言内容、昵称、图片和站点链接(如填写)可能公开展示;邮箱和 IP 地址不会在留言板公开展示。
  • AI 对话信息:使用 AI 搜索时,本站会处理您提交的问题以及最近 6 条对话历史,用于检索博客内容并生成回答。问题和对话历史会发送至 ModelScope,或在第三方接口不可用时由 Cloudflare Workers AI 处理。请勿在 AI 对话中提交密码、Token、身份证件、联系方式或其他敏感信息。

请不要在评论或留言中提交身份证件、银行卡、住址、密码或其他不必要的敏感个人信息。

第三方服务#

为实现本站功能,以下第三方会在各自服务范围内处理相关数据:

  • Umami:用于匿名化的网站访问统计和出站链接点击统计,帮助我了解本站的使用情况。
  • Waline:用于文章评论、留言板及访问量统计。服务会按照其自身规则处理您在评论或留言时提交的信息及必要的反滥用信息。
  • Cloudflare:为本站提供静态资源分发、AI Worker、Vectorize 和相关基础设施。留言板不使用项目 Worker 或 KV 存储。
  • ModelScope:为 AI 搜索提供文本向量和对话模型服务,会处理您提交的问题及发送给模型的最近对话历史。
  • Cloudflare Workers AI:在未配置第三方 AI 接口时提供文本向量和对话模型服务,并处理相同的 AI 请求数据。
  • unpkg:用于加载 Waline 的前端脚本、样式和表情资源;请求这些资源时,您的浏览器会与该服务建立连接。

第三方服务可能有独立的隐私政策和数据保存规则。请在使用相关功能前查阅其规则;本站无法控制其独立的数据处理活动。

本站主要使用浏览器本地存储(Local Storage 或 Session Storage)保存使用偏好,例如主题颜色、明暗模式、文章列表视图和音乐播放设置。留言板会在本地保存匿名资料、未发送草稿和登录状态,以便恢复输入与会话;管理员登录状态仅保存在当前会话。AI 搜索的会话标题和完整对话也会保存在当前浏览器的 Local Storage 中,最长保存 7 天;您可以在 AI 面板中使用“清空全部会话”立即删除这些数据。

本站不主动设置用于广告定向的第一方 Cookie。评论、统计或资源服务可能按照其自身规则使用 Cookie 或类似技术。您可以通过浏览器设置查看、删除或限制 Cookie 和本地存储;清除后,部分偏好或互动状态可能会恢复为默认值,评论功能也可能受到影响。

信息公开、保存与安全#

评论和留言属于公开互动内容,提交后可能被搜索引擎收录、被他人引用或在缓存中短暂保留。请谨慎决定发布内容。除非您提出删除请求、内容违反规则或法律法规另有要求,公开内容会持续保留以维持讨论上下文。

本站会采取合理措施保护数据安全,包括使用 HTTPS、输入校验、内容转义和访问频率限制。但互联网传输和第三方服务均无法保证绝对安全,请理解并自行承担公开发布信息的相应风险。

你的权利#

你可以通过 crqgxs@qq.com 联系我,申请查询、更正或删除由本站直接保存的评论、留言或相关公开内容。为保护他人权益,请在请求中提供足以定位内容的信息,并说明你与该内容的关系;必要时可能需要进行合理核验。

对于由 Waline、Umami、Cloudflare 或 unpkg 独立处理的数据,你也可以直接向对应服务提供方行使相关权利。删除公开评论或留言后,第三方缓存、搜索引擎索引或他人转载的副本可能无法立即同步删除。

未成年人条款#

未满 14 周岁的未成年人应在监护人同意和指导下使用本站的评论、留言等互动功能。监护人如发现未成年人未经同意提交了个人信息,可通过上述联系方式与我联系,我会在合理范围内协助处理。

政策更新与联系#

我可能因本站功能或适用规则变化更新本政策,更新后的版本将在本站公布并标明日期。继续使用相关功能即表示你已阅读并理解更新后的政策。

如对本政策或数据处理有疑问,请联系 crqgxs@qq.com

用户协议

更新日期: 2026 年 5 月 19 日
生效日期: 2026 年 5 月 19 日

适用范围#

本协议适用于你访问 Qgxs的博客,以及使用文章评论、留言板等互动功能的行为。继续浏览本站或提交评论、留言,即表示你已阅读、理解并同意遵守本协议及本站的隐私政策。

评论及留言规则#

请在交流中保持友善、理性和尊重。你不得利用本站发布、传播或实施以下行为:

  • 发布任何违反中华人民共和国法律法规的内容。
  • 发布任何侵犯他人合法权益的内容,包括但不限于隐私、名誉、肖像、著作权、商标权和其他知识产权。
  • 恶意攻击、辱骂、骚扰、威胁、歧视其他用户或任何第三方。
  • 发布垃圾广告、恶意推广、刷屏、灌水,或与讨论主题明显无关的重复内容。
  • 利用本站进行网络诈骗、钓鱼、传播恶意软件,或发布可能危害网络和信息安全的内容。
  • 绕越或试图绕越本站的审核、限流、封禁等管理措施。
  • 冒充他人、伪造身份,或收集、公开他人的个人信息。

内容与访问管理#

你应对自己发布的评论和留言负责,并保证拥有发布该等内容所需的合法权利。论坛管理员有权在不另行通知的情况下删除违规内容、限制或封禁违规账号,或限制其继续使用本站互动功能。

如发现涉嫌违法犯罪、严重侵权或危及本站安全的内容,本站可保留相关记录,并在法律法规要求或必要时向有关部门提供协助。对管理措施有疑问时,可通过文末联系方式说明情况;本站会结合实际情况处理,但不承诺恢复已删除内容或访问权限。

知识产权与内容授权#

本站原创文章、页面设计和其他受保护内容的权利归作者或权利人所有。未经授权,请勿复制、转载、镜像或用于商业用途;法律法规允许的合理使用除外。

你发布评论或留言时,授予本站为展示、存储、备份、审核、删除和维护互动功能所必需的非独占、免费的使用许可。该许可不改变你对原创内容依法享有的权利。

免责声明#

本站内容仅用于个人记录、学习交流和一般信息参考,不构成任何专业意见、承诺或担保。你应结合自身情况独立判断,并对据此采取的行动负责。

评论、留言和外部链接中的内容由其发布者或运营者负责,不代表本站立场。本站会在合理范围内处理明显违规内容,但不保证所有内容均及时发现,也不对第三方网站的可用性、内容、安全性或隐私实践承担责任。

因网络故障、不可抗力、第三方服务异常、维护升级或超出合理控制范围的原因导致本站暂时无法访问、内容延迟或数据丢失的,本站会尽力恢复,但不承担由此产生的间接损失。

未成年人条款#

未满 14 周岁的未成年人应在监护人同意和指导下使用评论、留言等互动功能。监护人应协助未成年人理解本协议,并对其使用行为进行必要的引导。

其他条款#

我可以根据本站功能、管理需要或法律法规变化更新本协议,更新后的版本将在本站公布并标明日期。继续使用本站即视为接受更新后的协议。

本协议的订立、执行和解释适用中华人民共和国法律。因本协议或使用本站产生争议时,双方应先友好协商;协商不成的,依法向有管辖权的人民法院解决。

如对本协议或内容管理有疑问,请联系 crqgxs@qq.com