2

可能重复:
json 文件的正确 HTTP 标头

我使用以下行设置了 php 文件的标题:

header('Content-Type', 'application/json');

服务器失败并显示错误消息:

"Tue Oct 23 16:20:09 2012] [error] [client 111.111.111.111] malformed header from script. Bad header=Content-Type: xyz.php, referer:...."

我按照网上的一些建议将其添加到 .htaccess 文件中

AddType application/json .json

两者都没有工作。我将不胜感激任何进一步的帮助。

4

2 回答 2

5
header('Content-type: application/json');
于 2012-10-24T00:57:19.180 回答
1

注意引号在哪里header()

header('Content-type: application/json');

于 2012-10-24T00:57:25.390 回答