How to remove a cookie in Apache

后端 未结 4 569
广开言路
广开言路 2020-12-30 03:55

I need to remove a cookie from the HTTP request that gets to the server. Doing it on the client (that writes this cookie) or on the server (that reads it) is not an option.

4条回答
  •  礼貌的吻别
    2020-12-30 04:35

    I use this to unset all cookies (good to serve static content)

    Header unset Cookie
    Header unset Set-Cookie
    

提交回复
热议问题