2

我正在使用典型的 PHP 代码来下载文档:

  header('Content-Type: ' . $mimeTypes[$fileext]); 
  header('Content-Disposition: attachment; filename="' . $filename . '"');
  header('Content-Transfer-Encoding: binary');
  header('Accept-Ranges: bytes');
  header('Cache-Control: private');
  header('Pragma: private');

  readfile($filepath);

一切正常 - 打开一个下载/另存为对话框,除了 .doc 文件尝试在 docs.google.com 中打开但由于缺乏权限而失败 - 这是因为我从网站根目录之外提供文件。

那么如何绕过 docs.google 并强制每个浏览器提供另存为对话框,而不管文件 mime 类型如何?('doc' => 'application/msword')

我尝试了以下方法无济于事:

  1. 在 .htaccess 文件中:

    <FilesMatch "\.(?i:doc)$">
        ForceType application/octet-stream
        Header set Content-Disposition attachment
    </FilesMatch>
    
  2. 在 .htaccess 文件中:

    AddType application/octet-stream .doc
    
  3. 在 PHP 脚本中:

    header('Content-Type: application/force-download');
    
4

2 回答 2

1

将此添加到您的标题中:

header("Content-type: application/force-download");
于 2013-04-20T20:10:23.337 回答
0

以下 php 为我工作

header("Cache-Control: private");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=".$file."");
header("Content-Transfer-Encoding: binary");
header("Content-Type: binary/octet-stream"); 
readfile ($link);

PS - 我$file只在变量中使用了文件扩展名,所以不需要提及mime 类型......

希望这可以帮助 :)

于 2016-07-24T18:08:34.910 回答