I'm trying to resolve this URL Route:
Route articlesByCategory = new Route("articles/c{cid}-{category}", new Handler);
However, it seems like the following url won't resolve to this route:
// doesn't work
www.site.com/articles/c24-this-is-the-category-title
// This works
www.site.com/articles/c24-category
I assume it has to do with the dashes in the title, but can anyone tell me why this works this way?
Is there a way to allow dashes in the title for a URL route like this?