PHP / 5.4.45,nginx / 1.2.1
我的PHP脚本为json设置正确的内容/类型:
header('Content-Type: application/json; charset=UTF-8');
但是在服务器响应标题中:
Content-Type:text/html
我应该如何更改标题?
答案 0 :(得分:2)
将application/json
添加到charset_types
指令中。小心不要忘记默认的一个。我读的是这样的(默认加上application / json)
charset_types text/xml text/plain text/vnd.wap.wml application/javascript application/rss+xml application/json;
答案 1 :(得分:0)
加入/etc/nginx/mime.types
:
`application/json json;`
并重新加载nginx。