vote up 2 vote down star
1

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.

flag

1 Answer

vote up 1 vote down check

The canonical way is something like:

<Directory />
    Order Deny,Allow
    Deny from all
</Directory>

<Directory /sandbox>
    Order Deny,Allow
    Allow from all
</Directory>

<Directory /WebDev>
    Order Deny,Allow
    Allow from all
</Directory>

<Directory /Projects>
    Order Deny,Allow
    Allow from all
</Directory>
link|flag
yeah, that makes sense but I was hoping that there would be a quicker regex way to add it faster. If there aren't any other answers this would work for sure. – Ramblingwood Jul 2 at 23:55
it works though! thanks. – Ramblingwood Sep 15 at 0:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.