httprewrite

package
v0.3.36 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 28, 2025 License: BSD-3-Clause Imports: 5 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(config ...interface{}) fiber.Handler

New fiber handler app := fiber.New()

app.Use(rewrite.New(rewrite.Config{
  Rules: map[string]string{
    "/old":   "/new",
    "/old/*": "/new/$1",
  },
}))

Types

type Config

type Config struct {
	// Filter defines a function to skip middleware.
	// Optional. Default: nil
	Filter func(*fiber.Ctx) bool

	// Rules defines the URL path rewrite rules. The values captured in asterisk can be
	// retrieved by index e.g. $1, $2 and so on.
	// Required. Example:
	// "/old":              "/new",
	// "/api/*":            "/$1",
	// "/js/*":             "/public/javascripts/$1",
	// "/users/*/orders/*": "/user/$1/order/$2",
	Rules []*Rule
	// contains filtered or unexported fields
}

Config ...

type RegexWrapper

type RegexWrapper struct {
	// contains filtered or unexported fields
}

type Rule

type Rule struct {
	Key   string
	Value string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL