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.
Regular 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 /shop and Destination is /store
- Request /shop?id=5 becomes /store?id=5 automatically.