I am having an issue with caching the home page of my Asp.Net Mvc App.
All the other pages cache fine using the [OutputCache(Duration=60, VaryByParam="None")] action filter.
The problem is that the home page does not cache. I noticed that if I access the home page via Controller/Action ("Home/Index") then it caches but when accessed via "/" it doesn't work.
Any ideas?