Redirect
少于1分钟
Redirect 重定向
Redirection middleware for Fiber.
Fiber 的重定向中间件。
Signatures 签名
|
|
Examples 示例
|
|
Test: 测试:
curl http://localhost:3000/old
curl http://localhost:3000/old/hello
Config 配置
Property 属性 | Type 输入 | Description 说明 | Default 默认 |
---|---|---|---|
Next 下一步 | func(*fiber.Ctx) bool | Filter defines a function to skip middleware. Filter 定义了一个跳过中间件的函数。 | nil |
Rules 规则 | map[string]string | Rules defines the URL path rewrite rules. The values captured in asterisk can be retrieved by index e.g. $1, $2 and so on. 规则定义了 URL 路径重写规则。星号中捕获的值可以通过索引检索,例如 $1、$2 等。 | Required 必需 |
StatusCode | int | The status code when redirecting. This is ignored if Redirect is disabled. 重定向时的状态代码。如果禁用了重定向,则忽略此项。 | 302 Temporary Redirect 302 临时重定向 |
Default Config 默认配置
|
|