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.
在我的(远程)服务器中,对于 cookie,默认设置path为 not /。我需要那条路/。
path
/
当然,我可以在创建 cookie 时设置路径:
setcookie("name", "value" ,time() + 3600, "/");
但我感兴趣,如何通过.htaccess文件设置默认 cookie 路径?
.htaccess
php.ini 的这个参数是:
session.cookie_path
因此,在 htaccess 文件中,您可以执行以下操作:
php_value session.cookie_path yourpath
您也可以使用 php 函数session_set_cookie_params(),但它可能对您的需要有点重。
session_set_cookie_params()