尾随斜杠中间件
此中间件处理 GET 请求中 URL 的尾随斜杠。
appendTrailingSlash
如果未找到内容,则将 URL 重定向到添加了尾随斜杠的 URL。 此外,trimTrailingSlash
将删除尾随斜杠。
导入
ts
import { Hono } from 'hono'
import {
appendTrailingSlash,
trimTrailingSlash,
} from 'hono/trailing-slash'
用法
将 /about/me
的 GET 请求重定向到 /about/me/
的示例。
ts
import { Hono } from 'hono'
import { appendTrailingSlash } from 'hono/trailing-slash'
const app = new Hono({ strict: true })
app.use(appendTrailingSlash())
app.get('/about/me/', (c) => c.text('With Trailing Slash'))
将 /about/me/
的 GET 请求重定向到 /about/me
的示例。
ts
import { Hono } from 'hono'
import { trimTrailingSlash } from 'hono/trailing-slash'
const app = new Hono({ strict: true })
app.use(trimTrailingSlash())
app.get('/about/me', (c) => c.text('Without Trailing Slash'))
注意
当请求方法为 GET
且响应状态为 404
时,它将被启用。