import Koa from "koa"; import _ from "koa-route"; const app = new Koa() app.use(_.get('/old', async ctx => { ctx.redirect('/new') })) ...
確定! 回上一頁