Apache Configuration Sections
Configuration directives can be limited by using "sections", such as
Within .htaccess
Note that onlyFiles
and
FilesMatch
can be used within .htaccess
files.
Examples:
<Files .htaccess>
Order allow,deny
Deny from all
</Files>
Examples:
# deny access to any tilde backup files
<Files *~>
Order allow,deny
Deny from all
</Files>