We have a website setup with multiple (32) virtual directories/applications as subfolders. E.G.
mysite.com
mysite.com/boxes
mysite.com/circles
Questions is related to sharing a sitemap file. We have a mysite.sitemap file located in a shared folder for all of the applications and a directive in the root site web.config with a custom sitemap provider.
None
0 Points
1 Post
Shared Sitemap File / Multiple Application Directories
Mar 12, 2013 02:08 PM|josh_att|LINK
We have a website setup with multiple (32) virtual directories/applications as subfolders. E.G.
mysite.com
mysite.com/boxes
mysite.com/circles
Questions is related to sharing a sitemap file. We have a mysite.sitemap file located in a shared folder for all of the applications and a directive in the root site web.config with a custom sitemap provider.
<add name="CustomSiteMap" type="System.Web.XmlSiteMapProvider" siteMapFile="~/core/custom.sitemap" />
(custom is a virtual directory off of the root and all of the sub apps)
On each page in the site (both the root and 32 applications), we have a SiteMapPath control referencing the above.
Is the sitemap file going to get cached/used 32 different times for each application or only once?