Using ASP.NET Core and I need to resolve controller and action from URL depends on the settings in Dictionary (or DB). URL => Controller, Action
/something/and/more/2016-10-16 must be processed by controller "Content" and Action "Details"
/something/special must be processed by controller "Blog" and Action "Index"
/super-offer.html must be processed by "Content"/"Offers"
URLs and related Controller with Action stored in Dictionary, for example.
I need a help with building this handler. Thanks!