#
# Explicitly disable caching of any and all media types from module requests
# This will cause performance issues for websites that do not change often
# but will prevent browser caching from preventing items from being updated.
#
<IfModule mod_expires.c>
	ExpiresActive Off
</IfModule>

<IfModule mod_headers.c>
    Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
    Header set Pragma "no-cache"
</IfModule>

# To deny public access
<Files ~ "\.(md|txt)$">                                                                           
  order deny,allow                                                                                                            
  deny from all                                                                                                               
</Files>