Skip to content

Releases: gtxykn0504/shorturl-Public

v2.0

22 Aug 07:19
a6b181e
Compare
Choose a tag to compare

基于Vercel的短链接项目 V2.0

  1. 优化主页:通过细化边框圆角和背景色,提升页面视觉吸引力。
  2. 页脚:页脚显示了版权声明,其中的年份部分使用 JavaScript 自动更新为当前年份。
  3. 修复:缩小字体并增加容器的宽度,确保文字能够在一行内显示。

v1.0

22 Aug 00:48
71dbed9
Compare
Choose a tag to compare

基于Vercel的短链接项目

一.修改内容

该项目来源于ThewApp,在ThewApp版本的基础上修改了以下内容

  1. 添加404.html
  2. 添加主页
  3. 优化部分代码,以及视觉效果

二.使用方法

您可以通过修改<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```
`