I recently found one of my sites had this error on google sitemaps. At first i couldnt work out why, less than half the site was indexed and google was rejecting the xml sitemap. In the end i realised what the issue was, i had set the site up with multiple sub-directories and had the menu written to link to each of the sub-directories as per below:
Code:
<a href="/folder1/">Folder 1</a><br />
Then inside the directory folder 1 was an index.php page.
Whilst this worked fine in practise, it was clearly disliked by google as i presume it considers this a 301 redirect to the index file.
To avoid this, i simple changed the menu to read:
Code:
<a href="/folder1/index.php">Folder 1</a><br />
Problem solved, the XML sitemap passed first time, i should think the rest of the site will begin to index fairly soon now, fingers crossed.
