bir alanda birden çok site haritası kullanma


10

Http://sub.example.com/ alan adım var .

İçinde http://sub.example.com/blog adresinde bir wordpress blogu ve http://sub.example.com/other , http://sub.example.com/stuff , vb . Adresindeki diğer daha statik içerik var. , vb

Blog içeriği oldukça sık güncellendiğinden, kolaylık sağlamak için blog için dinamik olarak oluşturmak için bir WP site haritası eklentisi kullanıyorum. Bu blogun http://sub.example.com/sitemap.xml adresindeki tüm alt alan çubuğu için ayrı bir tutar korurken bunu kullanmanın herhangi bir cezası / olumsuzluğu var mı ?

Yanıtlar:


10

Birden çok site haritası gayet iyi. Arama motorlarına sahip olduğunuzu söylemenin özel bir yolu var.

<?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>

Sadece bu spesifikasyona uyduğunuzdan ve hazır olduğunuzdan emin olun.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.