What is the best way to manage URL’s when using Umbraco just for the backend, (ie: Umbraco for content managing, and the website UI is a normal MVC application, and the contents are sent via UmbracoAPI controllers).
To be precise , what is the best approach for handling URL's for breadcrumbs and search feature
URL when using Umbraco as a Backend
What is the best way to manage URL’s when using Umbraco just for the backend, (ie: Umbraco for content managing, and the website UI is a normal MVC application, and the contents are sent via UmbracoAPI controllers).
To be precise , what is the best approach for handling URL's for breadcrumbs and search feature
Hi Libin,
As I understand you have these variants:
1) Handle urls with route table manually like here - https://msdn.microsoft.com/en-us/library/cc668201.aspx#addingroutestoanmvc_application
or - http://stephenwalther.com/archive/2015/02/07/asp-net-5-deep-dive-routing
If you are using MVC 5 or 6 there are great possibility to use Attribute-Based Routing
2) Install another Umbraco for handling pages and urls )
3) Write custom helpers for working with URLs and store urls in database.
Thanks,
Alex
is working on a reply...