What is the correct mime-type for serving an iPhone .ipa file?

前端 未结 3 1899
执笔经年
执笔经年 2021-02-02 07:54

I\'m trying to post .ipa files onto our apache web server for our beta testers to download. Currently I\'m using the following line in .htaccess to serve the files:



        
3条回答
  •  孤城傲影
    2021-02-02 08:32

    I voted up the other answers as they were both helpful, but this is what I ended up needing to fix the problem.

    AddType application/octet-stream .ipa
    
      Header set Content-Disposition attachment
    
    

提交回复
热议问题