I am using the default ASP.NET authentication solution. Now I have subdomains on my server (eg. example.com, blog.example.com, forum.example.com...) The login occurs on example.com, and gives out an authentication cookie. But when I go to forum.example.com I am redirected to login. Is there a configuration settings to making the login work for *.example.com?
It's worth noting that the cookies are issued as "example.com" for the domain. So I changed it to ".example.com" based on some reading, and now sub-domain authentication works. Anyone able to explain?