我的前两行sitemap.xml是:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
关键字xmlns有什么作用?它是为了什么?我应该在那里键入什么来在谷歌中进行索引。
此外,我在验证结果中收到警告:缺少“charset”属性 “text / xml”文档。
它是什么意思以及如何纠正它?
答案 0 :(得分:1)
我相信您用来验证站点地图的网站正在使用站点地图的弃用架构。
<?xml version="1.0" encoding="utf-8" ?>
<sitemap xml:base="http://www.barbrastreisand.com/" lang="en" type="text/html" charset="iso-8859-1" xmlns="http://standard-sitemap.org/2007/ns"></sitemap>
最新版使用:
<?xml version="1.0" encoding="utf-8" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"></urlset>