You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know I can have a route defined with regex like /abcd/:id:.*, however this doesn't match /abcd/a/b. Is there a way to do this in Gotham, where .* is not constrained to a single segment? I can always have a glob matcher /abcd/* and parse rest of the uri myself, but was wondering if Gotham supports something like this and I have missed it.
Ideally I'd like something like: ^/abcd/(.+)\.cgi/*
I'm pretty much extracting a path and passing it to a fCGI script down the line.
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I know I can have a route defined with regex like
/abcd/:id:.*
, however this doesn't match/abcd/a/b
. Is there a way to do this in Gotham, where.*
is not constrained to a single segment? I can always have a glob matcher/abcd/*
and parse rest of the uri myself, but was wondering if Gotham supports something like this and I have missed it.Ideally I'd like something like:
^/abcd/(.+)\.cgi/*
I'm pretty much extracting a path and passing it to a fCGI script down the line.
Thanks!
The text was updated successfully, but these errors were encountered: