Sling mapping issue
Hi there,
When sling mapping is used there is any way to set a application order?
In our case we have a set of rules to "shorten" part of the URL and another to remove the .html at the end:
sling:internalRedirect="/content/project/xx/yy/$1.html"
sling:match="localhost.8080/(.*)$
sling:internalRedirect="/content/project/xx/yy/"
sling:match="localhost.8080/
Also we define a few rules to avoid break the resources under /bin/, /etc/, /mnt and so on
All of this rules are at the same level under, /etc/map/http
The problem we have is when we add the mapping to allow the remove of the .html
the rules added for /bin/, /etc/, /mnt/ get changed by: /project/xx/yy/[bin||etc||mnt], so for example the replication service isn't working.
Does anybody face this problem?