html 的下载属性不适用于 iphone 浏览器

download attribute of html is not working for iphone browser

我正在尝试强制下载 pdf 而不是打开。 我用过

<a href='path' download>

但它仍然在 iphone 等移动设备中打开文件 我需要强制下载文件而不是打开 提前致谢

我给你一个通过php,

强制下载的想法

创建一个 PHP 文件 download.php,根据您的 php 应用进行相应更改。

    <?php
// Ajmal Praveen
    $file_name = 'file.pdf';
    $file_url = 'http://yoururl.com/' . $file_name;
    header('Content-Type: application/octet-stream');
    header("Content-Transfer-Encoding: Binary"); 
    header("Content-disposition: attachment; filename=\"".$file_name."\""); 
    readfile($file_url);
    exit;
    ?>

做一个link

<a href="./download.php?file=file.pdf" download>Download</a>