今天翻了翻 Vercel Docs, 发现 vercel.json 有个 redirects 参数
这就让我想起 iVampireSP 的头像了awa
所以整了个 Gravatar 头像重定向

正片

{
"redirects": [
{ "source": "/", "destination": "https://ltya.top", "permanent": false },
{ "source": "/avatar/:match*", "destination": "https://gravatar.ltya.top/avatar/5af06b461740fb2bd7467b8561399703?s=:match*", "permanent": false }
]
}

这样子就可以 307 临时重定向到了!我还写成能自定义分辨率的样子咯,类似于
https://example.com/avatar/500

https://hello.ltya.top/myavatar/500
这个能重定向到我的 500×500 分辨率的头图,更多玩法可以去看一下文档~