负载均衡设备F5

F5 irule 实现URL 根据目录 转到相关pool

例如 xxx.com/abc/ 的请求由 pool_abc 处理
建立irules:

when HTTP_REQUEST {
if { [HTTP::host] eq “xxx.com” } {
if { ([HTTP::uri] starts_with “/abc/”) } {
pool pool_abc }
}
}

在Virtual Servers里的 Resources 里的 iRules 的 Manage 添加这个irules:

F5 irule 实现URL 根据目录 转到相关pool
F5 irule 实现URL 根据目录 转到相关pool