Guys im having a big problem
Installed and got it running fine but it is producing invalid sitemaps
Quote:
<?xml version="1.0" encoding="UTF-8" ?>
<sitemapindex xmlns="http://www.google.com/schemas/sitemap/0.84" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://http://www.google.com/schemas/sitemap/0.84/siteindex.xsd">
<sitemap>http://www.performancecarclub.co.uk/forum/sitemap_1.xml.gz</sitemap>
<sitemap>http://www.performancecarclub.co.uk/forum/sitemap_2.xml.gz</sitemap>
<sitemap>http://www.performancecarclub.co.uk/forum/sitemap_3.xml.gz</sitemap>
</sitemapindex>
|
Thats my top level sitemap but it has no <loc> tags so google is reporting an error
Google says the file should look like this
Quote:
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.google.com/schemas/sitemap/0.84">
<sitemap>
<loc>http://www.example.com/sitemap1.xml.gz</loc>
<lastmod>2004-10-01T18:23:17+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://www.example.com/sitemap2.xml.gz</loc>
<lastmod>2005-01-01</lastmod>
</sitemap>
</sitemapindex>
|
So what have I done wrong?