From d0091fc713db928b8bef5c9d16c89c2a5fe754eb Mon Sep 17 00:00:00 2001 From: hehh Date: Sat, 10 Jan 2026 18:00:07 +0800 Subject: [PATCH] =?UTF-8?q?config(edgeone):=20=E6=B7=BB=E5=8A=A0=E9=87=8D?= =?UTF-8?q?=E5=86=99=E8=A7=84=E5=88=99=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 配置 .well-known 目录下 txt 文件的路径重写规则 - 将 /.well-known/*.txt 重定向到 /well-known/:splat.txt - 解决 .well-known 目录文件访问问题 --- edgeone.json | 8 ++++++++ .../vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt | 0 2 files changed, 8 insertions(+) create mode 100644 edgeone.json rename {.well-known => well-known}/vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt (100%) diff --git a/edgeone.json b/edgeone.json new file mode 100644 index 0000000..343782e --- /dev/null +++ b/edgeone.json @@ -0,0 +1,8 @@ +{ + "rewrites": [ + { + "source": "/.well-known/*.txt", + "destination": "/well-known/:splat.txt" + } + ] +} diff --git a/.well-known/vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt b/well-known/vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt similarity index 100% rename from .well-known/vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt rename to well-known/vercount-verify-v7lbufygdkzfqs35z6ih6l1q.txt