I am using a LocationMatch directive to determine whether or not to set CORS headers, but I'm having trouble getting it working properly.
For example, if the URI is /folder1/f/folder2/document1
, then <LocationMatch "^/folder1/f">
works, but <LocationMatch "^/folder1/f/">
does not, however <LocationMatch "^/folder1/f.">
does. Ideally I would end up with <LocationMatch "^/folder1/f/folder2">
, but that doesn't work either.
I can't figure out why ^/folder1/f/
doesn't work. Ideally I want to see in a log somewhere what it's matching against, in case there's something happening that I'm not aware of.
Is there any way to have that output to a log somewhere?