Hi,
The "Files" directive is used with just the filename, not with the whole path to the filename. So you can use:
Quote:
<Files "system.log">
Order Allow,Deny
Allow from all
</Files>
|
If you want to limit "Files" to a specific filename in a specific path, you can use:
Code:
<Directory /var/web/site>
<Files "system.log">
Order allow,deny
Allow from all
</Files>
</Directory>
Regards