Hi and thanks.
By example, I would like to redirect
www.website.com/section/cat/cat?start=1 to
www.website.com/section/cat?start=1, but not only for one specific URL but for all URLs with redundant part in it. Is it possible ?
You would like to drop a part of URL (/section/cat/cat should be /section/cat). This is possible using ReDJ macros. The Community version has {pathrtrim} that could help you so maybe is not necessary to use Enterprise version (it has some more macros like preg_match, that allows to use regular expression). In your case this shoudl work:
From URL: /section/cat/cat
To URL: http://{siteurl}/{pathrtrim /cat/cat}/cat{queryfull}
Let me know if you need help.
Best regards,
Luigi