Hi
I have a page which has links in a mmenu system which can build up into querystrings to filter products - for example:
link >> Solid
link>> Oak
Clicking the first link will redirect to the same page with the querystring page.aspx?type=solid
Once the page reloads, the links in the menu are appended with the new querystring., so the link>> oak will be page.aspx?type=solid&species=oak
I use these querystrings to filter down user selections.
Is it possible to write a rule to cover these querystrings, bearing in mind a user may click one or many of these links to build up a url, and may do so in any order i.e.
User 1 may click the menu to produce:
page.aspx?type=solid&species=oak
Another may click so the url is page.aspx?species=oak&type=solid
And another may click to produce page.aspx?type=solid&edge=square&species=maple
Is there any way to provide any uniformity with this and rewrite the urls so they are displayed in a set order e.g the order always goes page/type/species/edge even if the querystring is in no particular order, and then drop the rewritten path if its not applicable e.g. if type wasn't specified in the above example, it would just re-write page/species
Sorry if I'm not clear, I really would like some help on getting around this so if you need any clarification, please let me know!!
Thanks