Parameter | Type | Description | Example |
---|---|---|---|
object | The URI rewrite configurations. | ||
equalRules | array<object> | The exact match rules. | |
object | |||
match | string | The matching rule. | /old |
replacement | string | The replacement rule. | /new |
wildcardRules | array<object> | The wildcard match rules. | |
object | |||
match | string | The matching rule. | /api/* |
replacement | string | The replacement rule. | /$1 |
regexRules | array<object> | The regex match rules. | |
object | |||
match | string | The matching rule. | ^/js/(.*?)$ |
replacement | string | The replacement rule. | /public/javascripts/$1 |