The validator Enforce trailing slashes is disabled by default.
For legacy mappings, the trailing slashes behavior will be preserved in status ON.
The validator Enforce trailing slashes is disabled by default.
For legacy mappings, the trailing slashes behavior will be preserved in status ON.
The default validator forces that both paths either have a trailing slash or that both paths do not have a trailing slash.
Example with trailing slashes:
Entry path: /path/
Back-end path: /back-end/
/path/target
matches and is forwarded to /back-end/target
.Example without trailing slashes:
Entry path: /path
Back-end path: /back-end
/path/target
matches and is forwarded to /back-end/target
./back-end
.Example with trailing slashes:
Entry path: /path/
Back-end path: /back-end/
/path/target
matches and is forwarded to /back-end/target
.Example with trailing slashes:
Entry path: /path
Back-end path: /back-end/
/path
will be automatically complemented to /path/
.