In the httpd.conf I would like to allow a main path but disallow a particular subfolder.
Any url with this pattern must be accepted:
/app-1.0/public
/app-1.0/images
/app-1.0/
but this one must be ignored / not allowed.
/app-1.0/private
I want to use this configuration on an apache version 2.2.3. I have read that that version does not support negatives regex, but I am not sure.
Many thanks in advance.