php - nginx环境下无后缀图片文件读取显示的问题
黄舟
黄舟 2017-04-10 14:29:52
0
2
455

我用php生成了一些图片(没有后缀,其实是PNG文件)

用URL读取的时候提示我下载而非直接显示图片(通过标签加载正常),请问我要怎么设置才能直接显示图片,而非下载。

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(2)
大家讲道理

nginx add_header。

location /images/ {
    add_header content-type "image/png";
}
Ty80

有个叫 ngxheadersmore 的nginx扩展,可以修改response header 把你图片请求的response,改成响应的Content-Type

location /png {
  moresetheaders 'Content-Type: image/png';
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template