I want to block people from accessing every directory except for /sandbox, /WebDev and /Projects
I tried this:
<Directory ^/(?<!sandbox|Projects|WebDev)+(/.*)>
Order Deny,Allow
Deny from all
</Directory>
but it gave a 500 error.
|
1
|
|
|
|
|
|
The canonical way is something like:
|
||||
|