Redirect
Fiber 的重定向中间件。
签名
func New(config ...Config) fiber.Handler
示例
package main
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/redirect"
)
func main() {
app := fiber.New()
app.Use(redirect.New(redirect.Config{
Rules: map[string]string{
"/old": "/new",
"/old/*": "/new/$1",
},
StatusCode: 301,
}))
app.Get("/new", func(c *fiber.Ctx) error {
return c.SendString("Hello, World!")
})
app.Get("/new/*", func(c *fiber.Ctx) error {
return c.SendString("Wildcard: " + c.Params("*"))
})
app.Listen(":3000")
}
测试
curl https://127.0.0.1:3000/old
curl https://127.0.0.1:3000/old/hello
配置
属性 | 类型 | 描述 | 默认值 |
---|---|---|---|
下一个 | func(*fiber.Ctx) bool | Filter 定义一个跳过中间件的函数。 | nil |
Rules | map[string]string | Rules 定义 URL 路径重写规则。星号中捕获的值可以通过索引检索,例如 $1、$2 等。 | 必需 |
StatusCode | int | 重定向时的状态代码。如果禁用了 Redirect,则忽略此项。 | 302 临时重定向 |
默认配置
var ConfigDefault = Config{
StatusCode: fiber.StatusFound,
}