Destination URLs can be dynamic. You might want to include part of the source URL in your destination for it to work correctly.
redirect.pizza supports the following variables to use in your redirect. These will be automatically replaced when the redirect is performed:
All examples below are based on the following incoming URL: https://www.redirect-me-plz.co.uk/contact
{domain.fqdn}
- example: www.redirect-me-plz.co.uk
{domain.label}
- example: www.redirect-me-plz
- example:
{domain.root} redirect-me-plz
{domain.extension}
- example: co.uk
- example:
{domain.subdomain}www
{path}
- example: contact
{country}
- example: US
- example:
{method} POST
- example:
{scheme}https
Example 1
Source: https://my-old-site.com/
Destination: https://fancy-new-site.com/?rel={domain.label}
Will be redirect to: https://fancy-new-site.com/?rel=my-old-site
Example 2
Source: https://my-old-site.com/subpage
Destination: https://fancy-new-site.com/old/{path}
Will be redirect to: https://fancy-new-site.com/old/subpage
Example 3
Source: https://wildcard.my-old-site.com/
Destination: https://{domain.subdomain}.fancy-new-site.com
Will be redirect to: https://wildcard.fancy-new-site.com