How to set up this redirect on collection items

Hi,

I have an issue with a redirect structure for my collection items. I’m not understanding the documentation here; 301 redirects | Webflow University

I want to do a redirect on previous path /value-added-reseller/SOMETHING to new path /full-service-provider/SOMETHING.

I did this but it’s not working:

image

What am I doing wrong?

You’ll need to “escape” special characters with the " % " symbol. For example, /old-folder/(.*) will need to be /old%-folder/(.*) in order to work.

The following characters need to be escaped: % - & * ( ) = _ + ?

Made it work! Thanks