I was wondering if there was a simple way to make apache httpd deny (403) any URLs which contain a parent ..
in the path.
So far I have tried (ignoring the flase positives for simplicity)
<LocationMatch "\.\.">
Order allow,deny
Deny from all
</LocationMatch>
But that didn't work. The directory has Allow from all
in it. Am I on the right track or is there an easier way to do this (like there was in Fasttrack back in the 90s).