0

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>
John Conde
  • 217,595
  • 99
  • 455
  • 496

1 Answers1

1

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>