I have this URL working with ui-router: http://example.com/param1, so home (/) with one pending parameter, using:
...state("home",{
url: "/:id",
template...
However when I add a second parameter url: "/:id1/:id2", the first param is interpreted as a directory and all files are fetched like http://example.com/param1/assets/angularjs.min.js
What do I have to do to have multiple parameters?