ホームページ >バックエンド開発 >PHPチュートリアル >PHP Cookie セッションの永続性に基づく iRule スクリプト
when HTTP_REQUEST {
if { [HTTP::cookie が存在する "TestCookie"] } {
#test cookie はWEB里面定义的
persist uie [HTTP::cookie "TestCookie"]
}
}
when HTTP_RESPONSE {
if { [HTTP::cookie が存在する "TestCookie"] } {
persist add uie [HTTP::cookie "TestCookie"]
}
}