此 zone example.com 的单条重定向示例会将请求网站根路径(/)的英国和法国访问者,分别重定向到其本地化子域名 https://gb.example.com 和 https://fr.example.com。
When incoming requests match(当传入请求匹配时)
使用 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
例如,该重定向规则会执行以下重定向:
| 访问者国家/地区 | 请求 URL | 目标 URL | 状态码 |
|---|---|---|---|
| 英国 | example.com |
https://gb.example.com |
301 |
| 法国 | example.com |
https://fr.example.com |
301 |
| 美国 | example.com |
(不变) | n/a |