Here's the problem: I have a CATALook site with many product pages (i.e. each containing an ItemPane module). Each page is configured to show a specific CATALook CategoryID. When a page is opened CATALook forces a 302 redirect to a URL in this form: /MENS/BRAND/Hackett/tabid/3017/List/0/CategoryID/240/Level/a/Default.aspx?SortField=ISBN,ProductName Google has now indexed these URLs, but since then I have changed the CategoryID associated with each page. Now the above URL generates a "No products found" message (because the CategoryID is wrong). The correct URL is: /MENS/BRAND/Hackett/tabid/3017/List/0/CategoryID/2134/Level/a/Default.aspx?SortField=ISBN,ProductName However, the perfect URL for the page, in my opinion, would not contain any of the CATALook parameters (List, CategoryID, Level, SortField). It would be the URL that just takes you to the TabID of the page, i.e.: /MENS/BRAND/Hackett/tabid/3017/Default.aspx Could PB intercept a request for a URL with all the CATALook-added parameters and strip them out before passing it to DNN to process? Or is this a case where PB could force a 301 redirect to my "ideal" URL? |