Forum Discussion
matthew_b_16251
Nimbostratus
Jul 01, 2014SSl Offloading Content Switching
Hi,
I am just in the process of setting our new big IP load balancers. We will be migrating our old cisco content switches over these in the next week to this.
What we require is to be able...
MVA
Nimbostratus
Jul 01, 2014Try this - https://devcentral.f5.com/wiki/iRules.http__uri.ashx
The sample irule should work for your use case, for example:
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/test1" } {
pool test1_pool
} elseif { [HTTP::uri] starts_with "/test2" } {
pool test2_pool
}
}