10
1
I want to allow cookies for a domain but only over HTTPS -- not cookies from the same domain that come from HTTP. For example, I don't want any http://www.google.com
cookies, but I do want to allow https://www.google.com
cookies (because Calendars are there).
Is there a way to do this? Does the goal even make sense?
In Chrome, it only allows domain names, not URLs, to be added to the cookie exception list. In Firefox, it allows a protocol, but it only records the domain name, and if you click "Allow" or "Deny", it changes the same entry in the list.
3Maybe it matters for you; if so then you might need to limit your question even more: cookies that are served through HTTPS, but do not have the
secure
flag set, will also be sent back to the web server when using plain HTTP. – Arjan – 2011-01-18T18:27:46.017