search

Home  >  Q&A  >  body text

php - nginx环境下无后缀图片文件读取显示的问题

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

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

黄舟黄舟2847 days ago446

reply all(2)I'll reply

  • 大家讲道理

    大家讲道理2017-04-10 14:31:52

    nginx add_header。

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

    reply
    0
  • PHP中文网

    PHP中文网2017-04-10 14:31:52

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

    location /png {
      moresetheaders 'Content-Type: image/png';
    }
    

    reply
    0
  • Cancelreply