Forum Discussion
Jakub_Hornik_16
Nimbostratus
Jun 20, 2014URi based redirection only if pool members are available.
Hello everyone.
I am a newbie to iRules thus I apologize for any dumb questions in advance for foreseeable future. I have this iRule which does simple redirection based on URI:
when HTTP_REQUEST { ...
Jun 20, 2014
Hi!
If I understood your scenario correctly, you can use active_members for this. Try this one (not checked for syntax):
when HTTP_REQUEST {
if { [active_members http_pool] >= 2 } {
if { [HTTP::host] equals "example.com" and ( [HTTP::uri] equals "/" or [HTTP::uri] equals "/example-client" or [HTTP::uri] equals "/example-client//" ) } {
HTTP::redirect "https://example.com/example-client/login"
}
} else {
HTTP::uri "/errorpage"
pool your_error_pool
}
}
/Patrik
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