Force a file to be downloaded
The following stanza can be placed in .htaccess
file:
<FilesMatch "\.(xls)$">
Header set Content-Type application/octet-stream
Header set Content-Disposition attachment
# The following setting is optional:
Header set X-Content-Type-Options "nosniff"
</FilesMatch>