vote up 1 vote down star

Hi,

if I have a domain example.com, is there any way to make cookies valid only for that specific domain and not for sub-domains like www.example.com?

I know I can set it to only www.example.com, but can it be without a sub-domain?

flag

25% accept rate

2 Answers

vote up 0 vote down

Strictly speaking a cookie carrying the qualifier ";domain=example.com" should not be visible to the "www.domain.com" domain. Whereas ";domain=.example.com" would be visible to the www host.

However I would be very wary of this. I haven't tested this recently but I wouldn't be surprised to see some browsers not conforming properly to this.

link|flag
vote up 1 vote down

Cookies are identified by the combination of their name, domain, and path. So if set correctly, you can limit it's scope to a specific domain/sub-domain and path.

Read Wiki's HTTP Cookie's Attribute Section
or RFC2965

link|flag
However is there RFC2965 compliance across browsers? – AnthonyWJones Nov 3 at 10:51
@AnthonyWJones: I'm really not sure about that. Browsers should but then, who knows? – o.k.w Nov 3 at 10:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.