Force-Download with php on Amazon S3

后端 未结 12 1907
予麋鹿
予麋鹿 2020-12-13 07:40

I am trying to use http://code.google.com/p/amazon-s3-php-class/ to force-dowload files from AWS S3. I have an mp3 that I want people to \"play\" or \"download.\" By default

12条回答
  •  旧巷少年郎
    2020-12-13 08:19

    I never tried Amazon's S3 hosting, but don't you have access to using .htaccess files there? Then you can set Content-Type and Content-Disposition for an entire directory with this entry:

    
        
                ForceType audio/mpeg
                Header set Content-Disposition attachment
        
    
    

提交回复
热议问题