Thanks, I appreciate the response, but I think you misunderstood me.
I know how to access path parameters with mux.Vars. What I'd like to do is set everything after the prefix to a specific mux.Vars key.
For example, given a pattern like "/prefix/{catch}", I want "catch" to match _everything_ until the end of the path, so that "/prefix/one/two/three.txt" makes the mux.Vars key "catch" equal to "one/two/three.txt".
When I tried creating a pattern like this, the above situation made "catch" equal to _only_ "one", that is, everything up until the next slash.
So I'm wondering if this is expected behavior, if perhaps I did it wrong, or if this isn't possible in mux and must be done manually, as I'm doing right now.
Thanks!