Closed
Description
When trying to create a redirect from interview/kinder_fotografieren
to interview/kinder-fotografieren
the UI disallows submitting the form. This is because the source path is checked against the pattern ^[a-zA-Z0-9\-\/\.]+$
, mimicking the allowed paths in Neos.
In my case that is precisely whe the redirect is needed, Wordpress allowed _
, Neos does not. I hacked the pattern (using the web inspector), and could store and use the redirect just fine.
What other characters could/should be allowed here?