Introduction

    Configuration

    • Module config file

    • Rule config file

      | Config Item | Type | Description || —————- | ——— | —————————————————————————————— || Version | String | Verson of config file || Config | Struct | Redirect rules for each product. Redirect rule include: - Cond: “condition” expression - Actions: what to do after matched- Status: response status code |

      1. "Version": "20190101000000",
      2. "Config": {
      3. {
      4. "Actions": [
      5. {
      6. "Cmd": "URL_SET",
      7. "Params": ["https://example.org"]
      8. ],
      9. "Status": 301
      10. }
      11. ]
      12. }