修改为以下头部信息

      @header('Content-Description: File Transfer');
        @header('Content-Type: application/octet-stream');
        @header("Content-Type: application/force-download");
        @header('Content-Disposition: attachment; filename=' . $filename);
        @header('Expires: 0');
        @header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        @header('Pragma: public');
        @header('Content-Length: ' . filesize($filename));

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2022-01-14
  • 2021-07-22
  • 2021-12-27
  • 2021-06-30
  • 2021-04-01
猜你喜欢
  • 2021-04-24
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
相关资源
相似解决方案