How to download “.apk” as “.apk”? (not as “.zip”)

后端 未结 7 2005
天命终不由人
天命终不由人 2020-12-16 13:51

I have a small problem. Some browsers are not downloading the \".apk\" files correctly. How to download \".apk\" as \".apk\"? (not as \".zip\") Some browsers are convert the

7条回答
  •  情深已故
    2020-12-16 14:01

    Commit an answer for Nginx:

    Add this line in mime.types,

    application/vnd.android.package-archive     apk;

    If this won't work, try to return an explicit header for *.apk in your site conf,

    location ~* \.(apk)$ {
        add_header Content-Type application/vnd.android.package-archive;
        ...
    }
    

提交回复
热议问题