欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

基于PHP cookie会话保持之iRule脚本

程序员文章站 2022-05-12 13:12:18
...
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"]

}

}