I just read the 301 redirect documentation and have one question. The first example says:
Old Path “/old-url” → New path: “/entirely/new-url/structure”
But reading down to characters needing to be escaped with %, the old URL in the example does not escape the “-”. Should it not read “/old%-url” ?
Yes the documentation is a bit ambiguous, however in my tests, both will work.
Webflow appears to differentiate between static path processing and wildcard path processing rules, probably to make it easier for people who just want basic redirects.
So this is valid;
/old-url → /new-url
But if you’re using wildcards, you have to escape that hyphen;
You basically need to use % anytime you’re using a wildcard, but when you want to redirect one page to another, then you don’t need adding % before special characters