我有一个地点符合正确的工作:
<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
我的尝试是:
<LocationMatch "^/user/storage/subaccounts(/[a-zA-Z0-9]+)?/?admin/?$">
哪些工作没有工作。 难道有人会这样说,以指出我的错误,帮助我有正确的版本? 感谢!