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 |
"Version": "20190101000000",
"Config": {
{
"Actions": [
{
"Cmd": "URL_SET",
"Params": ["https://example.org"]
],
"Status": 301
}
]
}