我正在编写一个网站,当有人访问链接“http://www.sample-link.com/download/downloadApp 这是我在 PHP 网站上的代码”时自动提供 APK 下载。
$fileName = "./uploads/MyAPK.apk";
header('Content-type: application/download');
header('Content-Disposition: attachment; fileName="' . basename($fileName) . '"');
header('Content-Transfer-Encoding: binary');
readfile($fileName);
当我在 PC 上访问该链接时,它可以工作。当我在 Android 设备上执行此操作时,无法完成下载。它卡在下载队列中,出现错误“无法下载。内容不受支持”。我试图重新启动设备,但它不起作用。怎么修?