I used ASP.NET MVC5, I have a URL like this:
localhost:/product/12/nexus5x/quartz
product :controller; 12 :id; nexus5x/quartz:name
But it's returning a 404 error because the last param in the url contains / and I don't have routing to support that.
How can I do this?
Sometimes the last param (productName) contains /.
The first solution is replace / with - but for some product I couldn't replace that.