Reputation: 23
Google sitemap generator generates sitemap.xml file for homepage only in angular 6 build project. Cannot generate for other routing url paths as a whole.
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.XXXXXXXX.com/home</loc>
</url>
</urlset>
Upvotes: 0
Views: 536
Reputation: 33
you need to add all other pages manually
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.XXXXXXXX.com/home/abc</loc>
</url>
</urlset>
Upvotes: 1