On our asp site we have dynamic menus that read an xml file to build navigation. Will Zoom index the xml file if each navigation node includes an URL element such as this:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.les.com/legal_notice.htm</loc>
<changefreq>monthly</changefreq>
</url>
</urlset>
Or perhaps just a text list of links like; <a href='http://www.les.com/legal_notice.htm'>legal notice</a> ?
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.les.com/legal_notice.htm</loc>
<changefreq>monthly</changefreq>
</url>
</urlset>
Or perhaps just a text list of links like; <a href='http://www.les.com/legal_notice.htm'>legal notice</a> ?
Comment