Robert_47833
Apr 18, 2011Altostratus
here is the doubt about the order of 2 irules,one is HTTP::cookie secure
Hello,good morning
I have 2 irules under one VS
the first one is add secure deal with HTTP_RESPONSE,the second one is main irule deal with HTTP_REQUEST
here is add secure irule
when HTTP_RESPONSE { set myValues [HTTP::cookie names] foreach mycookie $myValues { if {$mycookie == "cjj"} { Do nothing. } if {$mycookie == "jjc"} { Do nothing. } else { HTTP::cookie secure $mycookie enable } } }
the main irule only include http_request event and send request to different pool against parameter in uri
at the begining someone put main irule before add secure irule,some user can't open the page
hence,another put add secure before main irule
it is ok now in this order:
add secure
main irule
can some tell me what is the difference of this order
I try to understand this but can't