nginx请求返回html文件,nginx返回json或者文本格式的方法-CSDN博客

网站介绍:用nginx怎么返回json格式或者文本格式的数据?其实很简单,如下代码:1、返回文本格式location ~ ^/get_text {default_type text/html;return 200 "hello world!";}2、返回json格式location ~ ^/get_json {default_type application/json;return 200 "{"statu..._default_type text/html