koa no trailing slash:中间件将所有请求重定向到带有尾部斜杠的URL到没有该URL的同一URL 源码
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?' ; } ) ;
用户评论