Forum Discussion

Albert_Tase_112's avatar
Albert_Tase_112
Icon for Nimbostratus rankNimbostratus
Oct 24, 2006

Need help converting the following irule from 4 to 9

rule KANA_bestbuy_kanaondemand_com {

 

if (http_uri starts_with "/bbyreports") {

 

use pool KANA_BestBuy_Reports_Pool

 

}

 

else {

 

use pool KANA_209.34.82.118_8081

 

}

 

}

 

1 Reply

  • when HTTP_REQUEST {
      if { [HTTP::uri] starts_with "/bbyreports" } {
        pool KANA_BestBuy_Reports_pool
      } else {
        pool KANA_209.34.82.118_8081
      }
    }

    -Joe