From c8678c8e373232b81d81095d89fcfd4b77010d70 Mon Sep 17 00:00:00 2001 From: smmariquit Date: Thu, 6 Aug 2026 21:51:00 +0800 Subject: [PATCH] feat: redirect uplbtools.me to www.uplb.tools Host-conditioned permanent redirect so the .me domain consolidates onto the new canonical origin. Subdomains (discord.uplbtools.me etc.) are untouched; only the apex and www hosts match. --- vercel.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..7f8eaeb --- /dev/null +++ b/vercel.json @@ -0,0 +1,16 @@ +{ + "redirects": [ + { + "source": "/:path*", + "has": [{ "type": "host", "value": "uplbtools.me" }], + "destination": "https://www.uplb.tools/:path*", + "permanent": true + }, + { + "source": "/:path*", + "has": [{ "type": "host", "value": "www.uplbtools.me" }], + "destination": "https://www.uplb.tools/:path*", + "permanent": true + } + ] +}