Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 Apache 的响应中记录一个 cookie 值。我怎样才能做到这一点。最接近的选择是
Logformat "%{Set-Cookie}o"
这会记录所有 cookie 作为响应。
如何提取特定的 cookie 值并记录它?
使用C格式字符串记录 cookie,例如:
C
Logformat "%{Foobar}C"
记录 cookie 的内容Foobar。
Foobar
参考
这仅适用于请求。如果在响应中设置了一个新的 cookie,这将不会选择它。