“内容类型:文本/纯文本”强制下载文件
如果我调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我无法用此脚本重现此内容:
但是,我可以用此重现它:
确保您的内容实际上是纯 ASCII 文本...
I cannot reproduce this with this script:
However, I can reproduce it with this:
Make sure that your content actually is plain ASCII text...
对我来说这有效:
For me this works: