In my AngularJS app with ui.router the parameter in the URL is interpreted as path if there is a trailing slash.
What works:
http://example.com/product/123
What does not work:
http://example.com/product/123/
In the console I see that AngularJS is looking for all files in
http://example.com/product/123/
rather in http://example.com/product
Google tells there is an option $urlMatcherFactory.strictMode(false)
I don't have an idea how to get it to work. And still I am not sure if this would help.
Anyone with similar experiences?