TJ_Vreugdenhil
Aug 17, 2011Cirrus
Persistance iRule
URL = http://alerts.company.edu/
URI needs to have persistence = http://alerts.company.edu/client/*
URI no persistence = http://alerts.company.edu/csi/*
when HTTP_REQUEST {
switch -glob [HTTP::uri] {
"/client/* {
persist sticky 600
use pool athoc_pool_1
default {
HTTP::redirect http://alerts.company.edu/csi
}}}
When I apply the iRule above, the other URI stops working. Is there something I can change? Do I need to use 'persist cookie' instead of 'persist sticky'?
Thank you!
-TJ