Table: baleen_redirect_rule
A redirect rule allow users to access moved content while maintaining the natural referencing of the pages.
Notes:
- List queries require a
namespace
.
Examples
List redirect rule of a namespace
select source, destinationfrom baleen_redirect_rulewhere namespace = 'kfuAlneru9fjrG==';
List temporary redirection
select source, destinationfrom baleen_redirect_rulewhere namespace = 'kfuAlneru9fjrG==' and type = 302;
Schema for baleen_redirect_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 redirect rule. |
source | text | Source path. | |
type | bigint | Type of the redirection (301 or 302). | |
with_query_string | boolean | Keep the query string. |