Dynamic Rules
Go beyond simple 1:1 redirects. Use patterns to match thousands of URLs with a single rule.
Wildcards (*)
Use the asterisk * to match any string of characters. You can use it at the end of a path or in the middle.
$1, $2, etc. in the destination URL to insert the matched wildcard content.Example: Source
/blog/* → Destination https://medium.com/@myblog/$1Regular Expressions
For complex validation (e.g., matching only numeric IDs), use standard PCRE regex syntax.
Match User IDs (Numeric Only)
Matches /user/123 but NOT /user/abc.
Match Specific Extensions
Matches any image request ending in .jpg, .png, or .gif.
Query Parameters
By default, UrlEdge preserves query parameters (e.g., ?utm_source=google) when redirecting.
- If Source is
/shopand Destination is/store - Request
/shop?id=5becomes/store?id=5automatically.