基于PHP cookie会话保持之iRule脚本
程序员文章站
2022-05-12 20:54:38
...
when HTTP_REQUEST {
if { [HTTP::cookie exists "TestCookie"] } {
#test cookie是WEB里面定义的
persist uie [HTTP::cookie "TestCookie"]
}
}
when HTTP_RESPONSE {
if { [HTTP::cookie exists "TestCookie"] } {
persist add uie [HTTP::cookie "TestCookie"]
}
}