https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34863 --- Comment #5 from David Cook <dcook@prosentient.com.au> --- Still think this is a cool idea and in theory shouldn't be hard to do. For anyone interested in writing this, check out "svc/bib" and it's use of $query->path_info(). Basically, the controller gets matched using part of the URL and then the rest of the URL is passed to the code in the path info. Either in page.pl or in a prettier path like "/cgi-bin/koha/page/longoverdues". I think we'd want something like "/page/" so we don't have potential conflicts with other parts of Koha. Routing by path is easy when using Plack/PSGI or Mojolicious, but harder when just using CGI. Of course, hopefully at some point we'll remove the CGI option (bug 39305 for a step in that direction...). Of course, another option is to just make /cgi-bin/koha/tools/page an Alias of /cgi-bin/koha/tools/page.pl in Apache but that's suboptimal in the long-run as it just entrenches us further into Apache. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.