I have one location match that correctly works:
<LocationMatch "^/user/storage/subaccounts(/[a-zA-Z0-9]+)?/?$">
this correctly forwards for something like /user/storage/subaccounts/exampleuser or /user/storage/subaccounts/
I'd like to setup a locationmatch for /user/storage/subaccounts/exampleuser/admin
My attempt at this was:
<LocationMatch "^/user/storage/subaccounts(/[a-zA-Z0-9]+)?/?admin/?$">
Which doesn't work. Would someone be so kind as to point out my error and help me with a correct version? Thanks!