<IfModule mod_headers.c>
  # index: jamais en cache
  <Files "index.html">
    Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0"
    Header set Pragma "no-cache"
    Header set Expires "0"
  </Files>

  # StreamingAssets: jamais en cache (json/csv/png/etc.)
  <FilesMatch "^(.*)$">
    # appliqué seulement si on est dans StreamingAssets (mettre ce .htaccess aussi dans StreamingAssets/)
  </FilesMatch>
</IfModule>