export default { async fetch(request, env, ctx) { // ⬇️ 把下方引号内的 HTML 换成你自己的 index.html 里的全部内容 ⬇️ const html = ` 全球导航站

全球出海数字工具导航

安全 · 隐私 · 海外永久可访问

Binance 币安专属注册领福利 OKX 欧易官方邀请链接 Telegram 官方电报教程
`; // ⬆️ 粘贴到这里结束 ⬆️ return new Response(html, { headers: { "content-type": "text/html;charset=UTF-8" }, }); }, };