i have this situation:
folderA/sub/sub/..../file.xml
folderB
folderC
...
.htaccess
index.php
I need deny access to all folderA, subdirectory and files, i put this rule to .htaccess but i can only deny access to folder, not the files inside
RewriteRule ^folderA(/|$) - [L,NC]
Thanks