AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 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; } ```