当前位置:Gxlcms > PHP教程 > 基于PHPcookie会话保持之iRule脚本

基于PHPcookie会话保持之iRule脚本

时间:2021-07-01 10:21:17 帮助过:6人阅读

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"]

}

}

人气教程排行