Table: baleen_rewrite_rule
A rewrite rule allow users to continue to access moved content seamlessly.
Notes:
- List queries require a
namespace
.
Examples
List rewrite rule of a namespace
select source, destinationfrom baleen_rewrite_rulewhere namespace = 'kfuAlneru9fjrG==';
List rewrite rules that rewrite /document URLs
select source, destinationfrom baleen_rewrite_rulewhere namespace = 'kfuAlneru9fjrG==' and source LIKE '/document%';
Schema for baleen_rewrite_rule
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
destination | text | Destination URL. | |
namespace | text | = | Namespace of the rewrite rule. |
source | text | Source path. | |
with_query_string | boolean | Keep the query string. |