Assuming that you are using the current v1.3.9h and that you are on unix and not windows server ...
Look at the file:
/pub/.htaccess
and uncomment the lines as instructed:
Code:
# but now allow just *certain* necessary files:
<FilesMatch ".*\.(zip|ZIP|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV)$">
Order Allow,Deny
Allow from all
# tell all downloads to automatically be treated as "save as" instead of launching in an application directly
# (just uncomment the next 2 lines by removing the '#'):
# ForceType application/octet-stream
# Header set Content-Disposition attachment
</FilesMatch>
by removing the comment marks:
Code:
# but now allow just *certain* necessary files:
<FilesMatch ".*\.(zip|ZIP|pdf|PDF|mp3|MP3|swf|SWF|wma|WMA|wmv|WMV)$">
Order Allow,Deny
Allow from all
# tell all downloads to automatically be treated as "save as" instead of launching in an application directly
# (just uncomment the next 2 lines by removing the '#'):
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>