I've upgraded from Apache 2.2 to 2.4 and all but one type of my URL rewrite rules are working as expected. It appears that the following rule isn't working. I removed the IP address for security purposes.
RequestHeader unset Authorization RewriteEngine On RewriteRule /xmldb/VATIncidentPoint/(.*)$ http://x.x.x.x:8080/exist/rest/db/VATIncidentPoint/${user2group:%{LA-U:REMOTE_USER}}/$1 [P]
It appears what's happening is that the section including user2group is not getting replaced with the group that the user is a part of. This results in 2 slashes at the end of the url instead of getting replaced with the group '//'. Is there a different way to do this in 2.4 than there was in 2.2?
Thanks in advance!