One of my subdomains with _ is giving session problem in IE
My site has subdomains. All the sub domains are single word except one, which has an _ in it. The php session is transferred between the subdomains without any errors both in Firefox and IE except for the one subdomains with the "_". The subdomain with the "_" works in Firefox but does not work with IE. The reason is: everytime the page loads in IE the subdomain with "_" registers and new php session id. I cannot stop it from registering the new session id. Can anyone of you know how to solve this problem or have good advice
P.S.: I need to use _ in my sub-domain. Removing _ is not an option.
Thanks
Here are some details
Example:
www.mywebsite.com -> Session works
mydomain.mywebsite.com -> Session works
my_domain.mywebsite.com -> Session does not work in IE
I also have this code in .htaccess
php_value session.cookie_domain ".mywebsite.com" which