I have a form created with Zend_Form and I would like to setup a Route for the submission, so that instead of the user NOT seeing his URL change OR seeing the URL change to a complicated GET string, it will change to reflect the filters.
BAD: /products
BAD: /products?color=white&size=large
GOOD: /products/white/large
GOOD: /products/color/white/size/large
Is there any way to accomplish this?