I'm wondering whether anyone has come across the following issue. We're currently working on a Sitecore website that uses integrated uCommerce to provide eCommerce functionalty.
Rather than passing category and product ids to a static url that maps directly to an item in the sitecore content tree e.g.
- domain.com/category/?category=123
- domain.com/category/product/?product=321
We want to be able to have URL's like follows:
- domain.com/category-name/product-name
Generating this url shouldn't be too difficult if we use IUrlService provided by uCommerce.
Is there an easy solution to get these sort of URL's to map to a particular item in the Sitecore content tree and ensure the uCommerce context is updated accordingly?
Thanks in advance for any help received.
httpRequestBeginpipeline processor to handle the incoming request and overriding the defaultLinkManagerto handle generating the out going URLs. An alternative would be to look at URL rewriting (but I'm not sure that would work in this instance) - jammykam