Google SEO 的站点地图文件的名称应该是什么?
What should be the name of the sitemap file for Google SEO?
我为我的网站创建了一个包含以下代码的站点地图:
<?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">
<url>
<loc>http://www.example.com/</loc>
</url>
<url>
<loc>http://www.example.com/aboutus.html</loc>
</url>
<url>
<loc>http://www.example.com/contactus.html</loc>
</url>
<url>
<loc>http://www.example.com/careers.html</loc>
</url>
<url>
<loc>http://www.example.com/terms.html</loc>
</url>
</urlset>
我的疑问是包含此代码的文件的名称应该是什么,以便 Google 可以找到我的站点地图文件?
站点地图文件名基本上是 if XML then /sitemap.xml
但如果您使用任何其他名称都没有问题,但我们必须将其添加到网站管理员。
有no fixed name/location defined.
您可以通过
告诉搜索引擎您的站点地图所在的位置
- linking it from your robots.txt,
- sending an HTTP request to each search engine,或
- submitting it to each search engine.
当然,最简单的方法是将 URL 包含在您的 robots.txt 中,因为您只需要这样做一次,而不用分别联系每个搜索引擎。请注意,不仅搜索引擎对您的站点地图感兴趣,因此将其包含在您的 robots.txt 中还可以让其他消费者找到它。
只需将包含 the full URL 的这一行添加到您的站点地图,在您的 robots.txt:
Sitemap: http://www.example.com/your-sitemap-file.xml
我为我的网站创建了一个包含以下代码的站点地图:
<?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">
<url>
<loc>http://www.example.com/</loc>
</url>
<url>
<loc>http://www.example.com/aboutus.html</loc>
</url>
<url>
<loc>http://www.example.com/contactus.html</loc>
</url>
<url>
<loc>http://www.example.com/careers.html</loc>
</url>
<url>
<loc>http://www.example.com/terms.html</loc>
</url>
</urlset>
我的疑问是包含此代码的文件的名称应该是什么,以便 Google 可以找到我的站点地图文件?
站点地图文件名基本上是 if XML then /sitemap.xml
但如果您使用任何其他名称都没有问题,但我们必须将其添加到网站管理员。
有no fixed name/location defined.
您可以通过
告诉搜索引擎您的站点地图所在的位置- linking it from your robots.txt,
- sending an HTTP request to each search engine,或
- submitting it to each search engine.
当然,最简单的方法是将 URL 包含在您的 robots.txt 中,因为您只需要这样做一次,而不用分别联系每个搜索引擎。请注意,不仅搜索引擎对您的站点地图感兴趣,因此将其包含在您的 robots.txt 中还可以让其他消费者找到它。
只需将包含 the full URL 的这一行添加到您的站点地图,在您的 robots.txt:
Sitemap: http://www.example.com/your-sitemap-file.xml