http://www.perlmonks.org?node_id=1080948


in reply to [Catalyst] How do you handle "URL Parameters" (aka advanced "route matching")

Hi,

In Catalyst, you can use something like:

sub entry :Args(4) { my ($self, $c, $year, $month, $date, $title) = @_; [locate and print article based on year etc] }
for a url like:
http://address/entry/year/month/date/title http://address/entry/2014/04/03/foo
See the documentation about :Args. Arguments are also found under $c->request->arguments.