OriginalURL
Returns the original request URL.
c.OriginalURL() string
// GET http://example.com/search?q=something
app.Get("/", func(c *fiber.Ctx) {
c.OriginalURL() // "/search?q=something"
})
Returned value is only valid within the handler. Do not store any references.
Make copies or use theImmutable
setting instead. Read more…