As the title can i use <sitemap>
tag in <urlset>
to point to my second sitemap?
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://website.com/page1</loc>
<changefreq>hourly</changefreq>
</url>
<url>
<loc>http://website.com/page2</loc>
<changefreq>hourly</changefreq>
</url>
<sitemap>
<loc>http://website.com/sitemap.xml?offset=1000</loc>
<changefreq>always</changefreq>
</sitemap>
</urlset>
or must i use <url>
to point to my second sitemap:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://website.com/page1</loc>
<changefreq>hourly</changefreq>
</url>
<url>
<loc>http://website.com/page2</loc>
<changefreq>hourly</changefreq>
</url>
<url>
<loc>http://website.com/sitemap.xml?offset=1000</loc>
<changefreq>always</changefreq>
</url>
</urlset>
I cannot use <sitemapindex>
as i have too many pages to generate a total index file.