“内容类型:文本/纯文本”强制下载文件

发布于 2024-12-11 18:07:50 字数 366 浏览 0 评论 0原文

如果我调用 header('Content-Type:text/plain; charset=ISO-8859-15'); 浏览器将下载文件而不是显示它。使用 text/html 可以代替。 (下载的文件无论如何都会被处理,它不会下载源代码)

我尝试添加 header('Content-Disposition:inline;'); 但它被忽略了。

我对可能导致此问题的原因一无所知,有什么提示吗?

服务器是MAMP 1.9.6(PHP 5.3.5,Apache/2.0.64)。

编辑:这只发生在 Chrome 上,它适用于 Firefox、Camino 和 Safari。

If I call header('Content-Type:text/plain; charset=ISO-8859-15'); the browser will download the file instead of showing it. Using text/html works instead. (the downloaded file is processed anyway, it's not downloading the source code)

I've tried to add header('Content-Disposition:inline;'); but it was just ignored.

I'm pretty clueless about what could cause this problem, any tip?

The server is MAMP 1.9.6 (PHP 5.3.5, Apache/2.0.64).

edit: this only happens on Chrome, it works on Firefox, Camino and Safari.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小草泠泠 2024-12-18 18:07:50

我无法用此脚本重现此内容:

<?php

  header('Content-Type:text/plain; charset=ISO-8859-15');
  echo "This is some text";

但是,我可以用此重现它:

<?php

  header('Content-Type:text/plain; charset=ISO-8859-15');
  echo "\x00This is some text";

确保您的内容实际上纯 ASCII 文本...

I cannot reproduce this with this script:

<?php

  header('Content-Type:text/plain; charset=ISO-8859-15');
  echo "This is some text";

However, I can reproduce it with this:

<?php

  header('Content-Type:text/plain; charset=ISO-8859-15');
  echo "\x00This is some text";

Make sure that your content actually is plain ASCII text...

独自←快乐 2024-12-18 18:07:50

对我来说这有效:

header('Content-Type:text/javascript;');

For me this works:

header('Content-Type:text/javascript;');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文