0

当我使用链接时<a href="test.apk">download</a>结果下载OK

但是当我使用表单提交时是错误的

这是代码:

<a href="download.php">download</a>

download.php我使用代码:

...
    header("Pragma: public");
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Content-Type: application/vnd.android.package-archive");
    header("Content-Description: File Transfer");
    header("Content-Disposition: attachment; filename='test.apk';" );
    readfile('test.apk');
...

当点击下载是从test.apk自动转换到test.zip(我使用android 2.3),如何修复它?

4

1 回答 1

0

mime 类型发生此错误:要纠正此错误,请在 .htaccess 中添加此代码

AddType application/vnd.android.package-archive
于 2013-04-15T18:49:49.827 回答