我们有以下配置:
<Directory /docs>
AuthFormAuthoritative Off
AuthType None
Allow from all
Satisfy any
Options FollowSymLinks
</Directory>
问题:我不希望任何 cookie 被发送到包含文档(以 开头的 URL /docs
)的 Apache 目录,即使用户首先访问需要身份验证的主站点。
可以用 Apache 来做吗?我应该添加什么配置?
答案1
也许您可以尝试使用mod_headers
:
RequestHeader unset Cookie
所有功劳都归功于 stackoverflow 兄弟: https://stackoverflow.com/questions/1798431/how-to-remove-a-cookie-in-apache