BaseURLBaseURLReturns the base URL (protocol + host) as a string. func (c *Ctx) BaseURL() string // GET https://example.com/page#chapter-1app.Get("/", func(c *fiber.Ctx) error { c.BaseURL() // https://example.com // ...})