← Rules / rules / url-forwarding / examples
Redirect local visitors to specific subdomains
This example single redirect for zone example.com will redirect United Kingdom and France visitors requesting the website's root path (/) to their localized subdomains https://gb.example.com and https://fr.example.com, respectively.
When incoming requests match
Using the Expression Editor:
(ip.src.country eq "GB" or ip.src.country eq "FR") and http.request.uri.path eq "/"
Then
- Type: Dynamic
- Expression:
lower(concat("https://", ip.src.country, ".example.com"))
- Status code: 301
For example, the redirect rule would perform the following redirects: