ok interesting, if it's line 1, line 1 is:
Code:<?xml version="1.0" encoding="UTF-8"?>
|
Line 2 is (which appears as line 1 when viewing the source)
Code:<urlset xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd">
|
When viewing the source in an editor, it appears as:
Code:<urlset 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://www.google.com/schemas/sitemap/0.84/sitemap.xsd"><!-- Created by nukeSEO Sitemap 1.0B --><!-- Updated on 2008-10-02T14:10:42-0400 -->
|
When looking at google's rules for header information, they mention the schema should be .9, not .84 - trying that doesn't work either
Code:<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
|
So I'm not sure what line 1 really is and what may possibly be wrong with it. Can you explain a little more susann what part of the code I need to look at and what I need to change?