Bug #90531
closedRequirements are not considered when an aspect is present
100%
Description
Follow up of: #86895
Now that requirements are not considered when an aspect is present a whole of our sites did break.
We have a customly programmed aspect (used in the ExtbasePluginEnhancer) which considered slashes and resolved the URL by itself (by exploding the slashes and finding the correct uid of the dataset). To make this work I did set the requirements to .*
(because the default requirement [^/]++
forbids slashes). We did this to have arbitrarily deep category trees which are represented in the url.
This change totally breaks this, because I can not set the requirements anymore (exception about [^/]++
because a slash is present). What is the solution for me here?
How do I resolve custom URLs containign slashes? I do not find any documentation or tutorials for this as well.