Forum Discussion
mbleiweiss_2986
Nimbostratus
Dec 08, 2016iRule to append URI and send to pool members
I have the current iRule set up and working fine:
when HTTP_REQUEST {
switch [string tolower [HTTP::host]] {
"clinicalapps.intouchstaging.com" {
if { [HTTP::uri] equals "/osu" } {
...
Vijay_E
Cirrus
Dec 08, 2016You need something like this if you want to modify URI and send it to the pool instead of redirecting:
if { [HTTP::uri] equals "/osu" } {
HTTP::uri "/webapp"
pool POOL_webapp
}
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