I purchased the FUP and I am primarily interested in making the CataLook Product Details Page URLs as simple as possible. Can I change the product details pages from something like this: http://www.mysite.com/Def...&ProductID=2 to be as simple as: http://www.mysite.com/my_product_name or http://www.mysite.com/products/myproductname Including extensionless? If so, how?  I've read throught the FUP.Documentation and its not clear.  Are there examples somewhere?  For the extensionless, what else do I change besides the "enable extensionless" check box?
 Hi,
Aricie.FriendlierUrlProvider allows you to change the CataLOOK product details pages. Look into the Module Specific Strategies section if the CataLOOk rewrite rule is existing else add it.
If you should add the strategy for catalook module, choose ItemPane_NF module to add it. Select the right provider (CatalookUrlRewriter) and click on Add Provider link.
Use the group [/${ProductName}] to show the product name Use the group [/${AdvCatName}] to show the advanced category name Use the group [/${CategoryName}] to show the standard category name
You must add the rewrite group between rules aliases like on the screenshot.
To activate extensionless urls, you should click on the link "Activate Extension less Urls".
For the next step, you should know the IIS version that you use :
 
Best regards, Aricie Team  
Thank you.  I was finally able to get it to mostly work.
For the CatalookUrlRewriter, when I used the Rewriting rule as displayed in cgaspard's screenshot, I still got lots of other information in the URL.  So I modified it to the following:
[${Scheme}][${UserInfo}][${RootPath}][/${ProductName}][/${ControlKey}][#${Fragment,QueryStringFlag}]
This did allow me to end up with detail product pages like this:  mysite.com/productname
However, the browse by category functionality no longer works.  Is there some other way this can be accomplished?  Perhaps use  [/${CategoryName}]  when showing the product list, but only show [/${ProductName}]  when viewing the product details? 
I also had to resolve the following before getting it to work:
Your needs are a little bit more difficult than an module specific strategie. You must extend your module specific strategy with a conditionnal behavior to switch between your use cases.
First of all, you must edit the module specific strategy general rewrite rule to show only the category and we will see how to add a conditionnal behavior for the case where the module show a product detail.
[${Scheme}][${UserInfo}][${RootPath}][/${Lang}][/${TabPath,None}][/${TabName,None}][/${AdvCatName}][/${ControlKey}][?${QueryString,None}][#${Fragment,QueryStringFlag}]
I have delete the product rewriting group, he will be processed with the conditionnal rule. Notice : Replace [/${AdvCatName}] by [/${CategoryName}] if you are using the standard category of CataLook.
Best Regards, Aricie Team
Wonderful!!!
I'm sure that's the solution many of Catalook admins were looking for...
Many thanks.