I want an URL like www.aaa.com/{Categoryname}/{ProductType}/{ProductName}
where Categoryname
,ProductType
,ProductName
can change dynamically.
ProductType and productname will be optional,categoryname is mandatory.
How do I identify those requests? I want to pass CategoryID
,ProductTypeID
,ProductId
Parameters to identify too.
Any ideas on how I could best set this up?