💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## return功能 1. 停止处理请求,直接返回响应码或重定向到其他URL; 2. 执行return指令后,location中后序指令将不会被执行; ## return语法结构 语法: ``` return code [text]; // 如果返回2XX的,text才有意义,text会在body中; return code URL; //主要用于重定向; return URL; //没有code的URL必须以http或者https开头的; ``` 上下文: ``` server | location | if ``` ![](https://img.kancloud.cn/b9/ea/b9ea46873e6036dfeb8eced3b6aa22cf_2694x920.png) ## code + text ``` location / { return 200 'your success'; } ``` 请求: ``` ➜ nginx curl website.com your success% //响应的内容 ``` ## code + URL ``` location / { return 302 /bbs; } location /bbs { root html; index index.html; } ``` ## URL 直接重定向到了百度了; ``` location / { return http://baidu.com; } ```