在域中使用多个站点地图


10

我有一个域名http://sub.example.com/

在它那里是在WordPress博客http://sub.example.com/blog等多个静态内容在http://sub.example.com/otherhttp://sub.example.com/stuff等等

由于博客内容经常更新,因此为了方便起见,我使用WP网站地图插件为博客动态生成了它。使用此功能是否有任何惩罚/负面影响,同时在http://sub.example.com/sitemap.xml上为该博客的整个子域栏维护一个单独的惩罚/否定?

Answers:


10

多个站点地图完全可以。有一种特殊的方式告诉搜索引擎您拥有它们。

<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <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>

只要确保您遵循该规范,便已准备就绪。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.