david-prv / QuickyPHP

A php micro-framework
GNU General Public License v3.0
5 stars 1 forks source link

Special Wildcards #2

Closed david-prv closed 1 year ago

david-prv commented 1 year ago

Allow multiple path parts in one wildcard:

Standard wildcard: /start/*/end/ allows /start/abc/end/ but noch /start/abc/abc/end/

Special wildcard: /start/**/end/ allows /start/abc/end/ and also /start/abc/abc/end/. You may repeat the inner parts as often as you want. It is important that the route ends on "/end".