文件下载 资源解释为文档,但使用 MIME 类型 application/octet-stream 传输
Posted
技术标签:
【中文标题】文件下载 资源解释为文档,但使用 MIME 类型 application/octet-stream 传输【英文标题】:file download Resource interpreted as Document but transferred with MIME type application/octet-stream 【发布时间】:2016-11-23 00:40:58 【问题描述】:我在用于文件下载的页面中有一个 iframe。我使用 mp3 歌曲路径和磁贴将 iframe 源设置为指向此 php 文件。
<?php
header("Content-Type: application/octet-stream");
$name = $_GET['name'];
header("Content-Disposition: attachment; filename=\"$name\"");
$path = str_replace(' ', '%20', $_GET['path']);
readfile($path);
exit;
?>
当我尝试从本网站的音频播放器下载 mp3 歌曲时:
http://janeingalls.com/
我在控制台中收到此消息,下载时文件大小始终为 0 字节。
Resource interpreted as Document but transferred with MIME type application/octet-stream
【问题讨论】:
【参考方案1】:添加一个标题告诉浏览器知道文件的路径后文件有多大:
...
header('Content-Length: ' . filesize($path));
readfile($path);
exit;
【讨论】:
以上是关于文件下载 资源解释为文档,但使用 MIME 类型 application/octet-stream 传输的主要内容,如果未能解决你的问题,请参考以下文章
CSS、.htaccess、资源解释为样式表,但使用 MIME 类型 text/html 传输
资源解释为 Document,但使用 MIME 类型 image/svg+xml 传输:
Flask:资源解释为样式表,但使用 MIME 类型 text/html 传输
Wordpress 样式表问题:资源解释为样式表,但使用 MIME 类型传输
压缩 css 文件导致 glyphicon 字体无法呈现:资源解释为字体但使用 MIME 类型 text/plain 传输