In angularJS ui-router allows us to use 2 components with the same route using states (like in this example Angular UI Router: Different states with same URL?).
Is i
You can have routes with parameters like
/article/:id/detail
Where /article/123/detail and /article/abc/detail lead to the same component.
/article/123/detail
/article/abc/detail
See for example this tutorial https://angular.io/docs/ts/latest/tutorial/toh-pt5.html (Search for "Configure a Route with a Parameter")