如何检查清漆中cookie的值

时间:2012-01-11 21:42:07

标签: cookies varnish

我有语言的cookie。我想检查是否设置了此cookie并检查其值以将用户重定向到特定页面。 Cookie名称为 Lang ,其值可能为 En,Fr或Ar

if (req.http.Cookie ~ "Lang"){
//now i want to check for the cookie value
//if LANG=="Ar"
// set req.url =  req.url "CookieValue"
}

有人知道如何检查清漆中的cookie值吗? 感谢

1 个答案:

答案 0 :(得分:12)

你可以尝试:

if (req.http.Cookie ~ "Lang=En") {
   // do something with the English cookie
}
if (req.http.Cookie ~ "Lang=FR") {
   // do something with the French cookie
}