笔者最近使用较多的聚合url工具是草料和link3。
草料二维码 (cli.im)
- 定位:国内最早、最知名的二维码生成与管理系统
- 核心功能:将网址、文本、图片、文件等内容一键生成二维码;提供活码(内容可修改但二维码不变)、批量生成、扫码数据统计、表单收集、签到打卡等。广泛应用于海报、名片、产品溯源、活动报名等场景
Link3 (link3.cc)
- 定位:个人/创作者数字名片与链接聚合工具
- 核心功能:用一个专属页面聚合你的所有社交账号、作品链接、联系方式(类似国外的 Linktree),生成一个短链接或二维码分享
- 特点:界面简洁、模板丰富,适合自媒体、博主、微商等需要”一处展示全网入口”的用户
在实际点击跳转过程中,微信等平台会弹出风险提醒,这个时候就需要部署检验文件。
微信不让你的博客跳转到 lin3CC 链接,核心原因是微信对外链的风控拦截,和你博客本身的域名、验证文件没有关系,
平台需要确认:作为网站所有者,你拥有对lifetruth.top 这个域名的根目录文件的控制权限。
所以会给你一个特定的 .txt 文件,要求你上传到根目录,平台会直接访问 https://lifetruth.top/你的验证文件.txt,如果能成功读取文件内容,就判定你拥有域名控制权,验证通过。
根目录 → www → wwwroot → lifetruth.top/
如果检验后,仍然被拦截,可以采取下面的方式:
解决办法:新建中转跳转页
在你的 lifetruth.top 站点根目录(就是和 wp-config.php 同级的文件夹,也就是你之前截图里的 lifetruth.top 文件夹),新建一个文件,比如叫 go-lin3cc.php,复制下面的代码,把 这里填你的lin3CC链接 改成你实际的链接即可。
<?php
// 中转跳转页 - 微信防拦截版
header('Content-Type: text/html; charset=utf-8');
$target_url = "这里填你的lin3CC完整链接,比如https://xxx.lin3cc.com/xxx";
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>跳转中 - lin3CC平台</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
background: #f8fafc;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 16px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
max-width: 350px;
width: 100%;
}
.icon {
font-size: 48px;
color: #3b82f6;
margin-bottom: 20px;
}
.title {
font-size: 1.2rem;
font-weight: 600;
color: #1e293b;
margin-bottom: 12px;
}
.desc {
font-size: 0.95rem;
color: #64748b;
margin-bottom: 30px;
line-height: 1.6;
}
.btn {
display: inline-block;
background: linear-gradient(135deg, #3b82f6, #2563eb);
color: white;
text-decoration: none;
padding: 12px 30px;
border-radius: 10px;
font-weight: 500;
transition: all 0.3s ease;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🔗</div>
<h1 class="title">即将跳转到 lin3CC 平台</h1>
<p class="desc">点击下方按钮即可继续访问,微信内打开可能需要手动跳转</p>
<a href="<?php echo $target_url; ?>" class="btn">点击继续访问</a>
</div>
</body>
</html>
步骤 2:修改博客里的链接
把你博客里所有的 lin3CC 链接,替换成中转页的地址:
步骤 3:测试效果
微信里打开你的博客,点击链接会跳转到中转页,用户点「点击继续访问」后,就能正常跳转到 lin3CC 了,微信完全不会拦截。
正文完