Optional Splat Routes

Exactly like a Splat route, except that it matches 0 or more segments (not 1 or more). page

The splat data in RouteParams for an optional splat are List String rather than (String, List String) to represent the fact that optional splat routes could match 0 segments.

See example code View Route Module