Disable cache to whole site
<IfModule mod_headers.c>
Header set Cache-Control "private"
</IfModule>
Disable specific extension file
<IfModule mod_headers.c>
<FilesMatch ".(log|txt)$">
Header set Cache-Control "private"
</FilesMatch>
</IfModule>