Is it possible to share a cookie between a domain and a subsubdomain
I'm trying to share a cookie between www.example.com and admin.other.example.com I've being able to make it work with other.example.com, but there's no way to access the sub-sub-domain
Edit: I handle subdomains 开发者_Python百科by defining the cookie domain as .example.com (note the first dot)
You can only share cookies between a domain and its own subdomains. For example:
- a cookie defined for the domain
example.com
can be accessed bywww.example.com
andfoo.bar.example.com
- a cookie defined for the domain
www.example.com
can be accessed byfoo.www.example.com
but not bybar.example.com
精彩评论