I can't seem to set regex correctly for the directive.
The syntax is:
<LocationMatch regex> ... </LocationMatch>
I've tried many of the following to no avail:
<LocationMatch "^/(admin-media|connect|css|downloads|images|images-web|js)/.+$">
<LocationMatch "^/(admin-media|connect|css|downloads|images|images-web|js)/.+">
<LocationMatch "/(admin-media|connect|css|downloads|images|images-web|js)/.+$">
<LocationMatch "/(admin-media|connect|css|downloads|images|images-web|js)/.">
Basically, I'm trying to override my default handler to None for addresses that match http://mysite/css/anything, but with no luck!
I could try setting up <Location "/admin">, and so forth, but that's just bloating