I want to map the following URI:
/admin/controller/action/id
to the following:
Controller -> Controller
Action -> Admin_Action
For example:
/admin/Users/Create
Controller -> Users
Action -> Admin_Create
/admin/Users/Delete/1
Controller -> Users
Action -> Admin_Delete(1)
Can I achieve that using routing rules?
I think the following route mapping should work …