redirect

URI 重定向插件。

参数

名称必须描述
uri是,与 http_to_https 二选一可以包含 Nginx 变量的 URI,例如:/test/index.html, $uri/index.html。你可以通过类似于 $ {xxx} 的方式引用变量,以避免产生歧义,例如:${uri}foo/index.html。若你需要保留 $ 字符,那么使用如下格式:/\$foo/index.html
ret_code否,只和 uri 配置使用。请求响应码,默认值为 302
http_to_https是,与 uri 二选一布尔值,默认是 false。当设置为 ture 并且请求是 http 时,会自动 301 重定向为 https,uri 保持不变

示例

启用插件

下面是一个基本实例,为特定路由启用 redirect 插件:

  1. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  2. {
  3. "uri": "/test/index.html",
  4. "plugins": {
  5. "redirect": {
  6. "uri": "/test/default.html",
  7. "ret_code": 301
  8. }
  9. },
  10. "upstream": {
  11. "type": "roundrobin",
  12. "nodes": {
  13. "127.0.0.1:80": 1
  14. }
  15. }
  16. }'

我们可以在新的 URI 中使用 Nginx 内置的任意变量:

  1. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  2. {
  3. "uri": "/test",
  4. "plugins": {
  5. "redirect": {
  6. "uri": "$uri/index.html",
  7. "ret_code": 301
  8. }
  9. },
  10. "upstream": {
  11. "type": "roundrobin",
  12. "nodes": {
  13. "127.0.0.1:80": 1
  14. }
  15. }
  16. }'

测试

测试示例基于上述例子:

  1. $ curl http://127.0.0.1:9080/test/index.html -i
  2. HTTP/1.1 301 Moved Permanently
  3. Date: Wed, 23 Oct 2019 13:48:23 GMT
  4. Content-Type: text/html
  5. Content-Length: 166
  6. Connection: keep-alive
  7. Location: /test/default.html
  8. ...

我们可以检查响应码和响应头中的 Location 参数,它表示该插件已启用。

  1. 下面是一个实现 http https 跳转的示例:
  2. ```shell
  3. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  4. {
  5. "uri": "/hello",
  6. "plugins": {
  7. "redirect": {
  8. "http_to_https": true
  9. }
  10. }
  11. }'

禁用插件

移除插件配置中相应的 JSON 配置可立即禁用该插件,无需重启服务:

  1. curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
  2. {
  3. "uri": "/test/index.html",
  4. "plugins": {},
  5. "upstream": {
  6. "type": "roundrobin",
  7. "nodes": {
  8. "127.0.0.1:80": 1
  9. }
  10. }
  11. }'

这时该插件已被禁用。