submitted by:
.htaccess: Deny From All
The deny from all .htaccess directive will prevent remote browser access to any files in the directory. Typically used to protect "/include" folders.
code snippet:
Deny from all notes:
Remember that this will not allow any browsers to directly load the files within. Of course, you can still include them server side on a script level, for example php's include() function.



