Releases: gtxykn0504/shorturl-Public
Releases · gtxykn0504/shorturl-Public
v2.0
v1.0
基于Vercel的短链接项目
一.修改内容
该项目来源于ThewApp,在ThewApp版本的基础上修改了以下内容
- 添加404.html
- 添加主页
- 优化部分代码,以及视觉效果
二.使用方法
您可以通过修改<redirects.yml>的代码从而设定跳转目的地与入口,语法如下:
- from: /baidu
to: https://baidu.com
status: 308 #更改状态码,例如301、302、307(默认)、308
- from: /google/:q #精确匹配一个比如说 /google/:q
to: https://google.com/search?q=:q
- from: /vercel/:slug* #匹配零个或多个比如说 /vercel/ vercel/docs
to: https://vercel.com/:slug
- from: /github/:slug+ #一个或多个执行/github/ThewApp github/ThewApp/vercel-shorturl
to: https://github.com/:slug
- from: /dev/:slug1/:slug2 #多个匹配例子 /dev/p/information
to: https://dev.to/:slug1/:slug2
- from: /google
to: https://google.com/search?q=:q
query:
action: search #必须有这个精确的查询
q: :q #这个匹配再查询比如说 /google?action = search&q =recursion
- from: /dev
to: https://dev.to/:user
query:
u: :user? #可选匹配ex. /dev /dev?u = thewbear```
`