When a user navigates to certain products i would like to display the category instead of the displaying the product, but without doing a reidrect.
So user goes to www.example.com/kids-toys/pink_bike.html i would like the page to display exactly like www.example.com/kids-toys/ but without doing a redirect,
I would like to use the targetPath in the Url Rewrites to go to the category instead of the product.
For example what would be the cleanest way to modify the targetPath so that instead of going 'catalog/product/view/id/221' it goes to 'catalog/category/view/id/13'.
Is there a specific event i could call to modify the targetPath before it is being dispatched.
Or maybe someone could suggest another way of accomplishing this..