Typecho LinkRouter 外链转内链插件

全文共 1238 字, 阅读约需 5 分钟

插件介绍:

LinkRouter 是一个轻量级的 Typecho 外链转内链插件,通过中转页面处理外部链接跳转。

插件类型:外链处理 / 安全 / 隐私保护 / 免费
最新版本:v1.0
更新时间:2024-11-23

主要功能:

使用方法:

  1. 下载插件并重命名为 LinkRouter
  2. 上传至网站的插件目录
  3. 后台启用并配置模板
  4. 外链自动完成转换

代码示例:

默认中转页面模板:

<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="refresh" content="2;url={url}">
    <title>页面加载中...</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f8f9fa;
        }
        .loading {
            text-align: center;
        }
        .loading-text {
            color: #6c757d;
            font-size: 18px;
            margin-bottom: 15px;
        }
    </style>
</head>
<body>
    <div class="loading">
        <div class="loading-text">页面加载中,请稍候...</div>
    </div>
</body>
</html>

说明:

本插件仅在 Typecho 1.2.1 版本通过测试,其他版本请自行测试。

最后更新:2024年11月24日 17:02

# Typecho# 插件


添加新评论

您的邮箱地址不会被公开。 必填项已用 * 标注