Forum Discussion
Annsar_Akhtar
Nimbostratus
Nov 24, 2016F5 irule getfield to split url and pass to different pools
Hi All
I am using the getfield to split a url and see if I can get the traffic to a different pool. The challenge I have is that /test/// needs to be served from a different pool from the defaul...
Kai_Wilke
MVP
Nov 24, 2016Hi Annsar,
If you want to forward URIs with 5 or more path segments to a different pool, then take a look to the iRule below...
when HTTP_REQUEST {
if { ( [string tolower [HTTP::path]] starts_with "/test/" ) and ( [llength [split [HTTP::path] "/"]] > 5 ) } then {
pool TESTPOOL
} else {
pool DEFAULTPOOL
}
}
Note: I hope that I got the point of your question? If not then please clarify the question a little bit more detailed with some samples URIs...
Cheers, Kai
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects