I'm using redirect method for confirmation with query strings. Since I didn't want the "?" in the url, I use an absolute url like this:
http://www.domain.com/{department:1:value}.html
It works nicely. But now i'm have multiple languages for my site, so the url for different languages will change to http://www.domain.com/zh-hans/{department:1:value}.html or http://www.domain.com/es/{department:1:value}.html. In this case, I need to use a relative url.
When I only use {department:1:value}.html in the redirect box, the result will add a ":/" before it. Then the link will become http://www.domain.com/:/actual-value.html.
How do I get rid of the ":/" ? or is there another work-around?