标签: http cookies subdomain
如何创建在www.example.com和example.com之间共享的HTTP cookie,而不是其他子域?
Cookie cookie = new Cookie("today", "friday"); cookie.setDomain("example.com") -> avaliable to all subdomains
如何仅向example.com和www.example.com提供Cookie?不是abc.example.com。感谢。