Setting cookies for multiple sub-domains

前端 未结 2 1319
轮回少年
轮回少年 2020-12-19 01:46

Is it possible to set a cookie for http://www.example.com from a PHP file located at https://secure.example.com? I have some code that was given to me, tha

2条回答
  •  自闭症患者
    2020-12-19 01:57

    Webpages can only set cookies for the second (or higher) level domain that they belong to.

    This means that secure.example.com can read and set cookies for secure.example.com or .example.com, the latter of which can also be read and set by www.example.com

    One last note: If the secure flag is set on a cookie, it can only be read and set over an https connection.

提交回复
热议问题