Why is it that if I create a cookie on www.example.com and check it on example.com, the cookie doesn't exist there? I am planning to just use .htaccess redirect non-www to a www domain. But how do I solve this?
|
feedback
|
|
Browsers are the main culprit here, not PHP. They store by domain, and don't know that When setting the cookie, use
For consistency, however, you may wish to consider rerouting all web traffic to a specific domain, i.e. send Here is a tutorial on how to accomplish such a redirect in Apache. | |||||||||
feedback
|
|
I believe you can set the cookie at example.com (really .example.com) and it will be sent if they go to www.example.com, but not vice versa. This standard security policy is to prevent users' private data from being sent to unintended servers. Personally, I use virtualhosts in my apache2.conf:
... in this example, everyone trying to load e.g. http://example.com/index.html is redirected to http://www.example.com/index.html. | |||
|
feedback
|
|
because php translates www.mydomain.com differently from mydomain.com. If the domains are not 100% identical the cookie wont match. And I'm sure the browser also looks for 100% match of the domain name before allowing servers to overwrite them. Just use .htaccess to redirect. It's the only SURE way to tackle this in all browsers. | |||||||
feedback
|