1. 首页
  2. 数据库
  3. 其它
  4. koa no trailing slash:中间件将所有请求重定向到带有尾部斜杠的URL到没有该URL的同一URL 源码

koa no trailing slash:中间件将所有请求重定向到带有尾部斜杠的URL到没有该URL的同一URL 源码

上传者: 2021-03-06 20:56:20上传 ZIP文件 5KB 热度 15次
Koa中间件,将所有请求重定向到带有尾部斜杠的URL到没有URL的同一URL,而忽略查询字符串(键和值)。 安装 npm install koa-no-trailing-slash 用法 const app = new ( require ( 'koa' ) ) ; app . use ( require ( 'koa-no-trailing-slash' ) ( ) ) ; app . use ( async ( ctx , next ) => { ctx . response . body = 'Did this URL had a trailing slash?' ; } ) ;
用户评论