import Koa from "koa"; | |
const app = new Koa(); | |
app.use((ctx) => { | |
console.log(ctx.request.url, ctx.request.method); | |
ctx.status = 307; | |
ctx.headers.location = `http://localhost:24242${ctx.request.path}`; | |
}); | |
app.listen(7860); | |
import Koa from "koa"; | |
const app = new Koa(); | |
app.use((ctx) => { | |
console.log(ctx.request.url, ctx.request.method); | |
ctx.status = 307; | |
ctx.headers.location = `http://localhost:24242${ctx.request.path}`; | |
}); | |
app.listen(7860); | |