gin
gin copied to clipboard
can suport domain router? like github.com/gorilla/mux
can suport domain router? like github.com/gorilla/mux
Matching Routes Routes can also be restricted to a domain or subdomain. Just define a host pattern to be matched. They can also have variables:
r := mux.NewRouter() // Only matches if domain is "www.example.com". r.Host("www.example.com") // Matches a dynamic subdomain. r.Host("{subdomain:[a-z]+}.example.com") There are several other matchers that can be added. To match path prefixes:
r.PathPrefix("/products/")