I have .htaccess
in my test environment developed in CakePHP and the .htaccess has authentication so that not anyone is accessing it.
Now I need to release a directory from the site, actually a CakePHP plugin, I need anyone to have access without requiring authentication.
<Directory /home/meusite/app/webroot>
AuthType Basic
AuthName "Ambiente de Desenvolvimento Teste"
AuthUserFile /home/user/.htpasswd
Require valid-user
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Question
How can I release a subdirectory from a directory protected by the .htaccess
displayed above?