因为特殊需求,需要自定义的http状态码,用apache和PHP-cli试了一下,没有找到方法实现,换成Nginx和php-cgi就可以了。
cgi.fix_pathinfo=1 cgi.force_redirect=1 cgi.rfc2616_headers=1
把上面三个设置注释掉,就可以了。
PHP header('HTTP/1.1 7001 this is test'); header('Content-type: application/json' ); exit; ?>
3,看结果
原文链接:https://www.f2er.com/nginx/447346.html