Considering the following scenario where I have a page "Job-Details" page with default "http://{domain}/job-details", how could extend Umbraco to also resolve the following URL "http://{domain}/job-details/{category}/{jobTitle}/{jobID}" to the "Job-Details" page while retaining the new URL?
I have tried custom routing and also URLProvider, but honestly quite confused when to use between the two.
Umbraco 8 - Page with wildcard URL
Hello,
Considering the following scenario where I have a page "Job-Details" page with default "http://{domain}/job-details", how could extend Umbraco to also resolve the following URL "http://{domain}/job-details/{category}/{jobTitle}/{jobID}" to the "Job-Details" page while retaining the new URL?
I have tried custom routing and also URLProvider, but honestly quite confused when to use between the two.
Thanks
-Steven
When you defined your route, did you also create a controller to handle it?
Thanks Graham for the response, managed to solve the challenge via IContentFinder
https://our.umbraco.com/documentation/reference/routing/request-pipeline/icontentfinder
is working on a reply...