mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-12 08:04:28 +08:00
1 KiB
1 KiB
name | parameters | provider | parameter_types | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
PORKBUN_URLFWD |
|
PORKBUN |
|
PORKBUN_URLFWD
is a Porkbun-specific feature that maps to Porkbun's URL forwarding feature, which creates HTTP 301 (permanent) or 302 (temporary) redirects.
{% code title="dnsconfig.js" %}
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
PORKBUN_URLFWD("urlfwd1", "http://example.com"),
PORKBUN_URLFWD("urlfwd2", "http://example.org", {type: "permanent", includePath: "yes", wildcard: "no"})
);
{% endcode %}
The fields are:
- name: the record name
- target: where you'd like to forward the domain to
- type: valid types are:
temporary
(302 / 307) orpermanent
(301), default totemporary
- includePath: whether to include the URI path in the redirection. Valid options are
yes
orno
, default tono
- wildcard: forward all subdomains of the domain. Valid options are
yes
orno
, default toyes