Click here to Skip to main content
15,887,285 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all ,

I have a dynamic site (AJAX loaded) .

Im trying to get my content indexed,

what i have done is

Create a sitemap index

it redirects the bot to AllCountries.ashx which is another sitemap index file

XML
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>/AllCountries.ashx</loc>
</sitemap>
</sitemapindex>


then in this sitemap index file it directs the bot to property links with specific country

e.g
XML
<sitemap>
<loc>
/AllCountryProperties.ashx?CountryId=TH
</loc>
</sitemap>
<sitemap>


then this goes to another sitemap ashx file generating urls for the properties in country TH which generates the following

eg

XML
<url>
<loc>
/PropertyInfo.aspx?id=33923
</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>
/PropertyInfo.aspx?id=33924
</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>


in webmaster tools it works without error but will google bot crawl it in this fashion?

Removed full urls in sitemap code for reason not to spam
Posted
Updated 3-Dec-15 23:39pm
v3
Comments
F-ES Sitecore 4-Oct-17 4:42am    
It should do, but surely you can check yourself from your analytics tools?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900