
Aşağıdaki kodlarda xsi:schemalocation ve xmlns:xsi haricinde bir fark görebiliyor musunuz? Yani size göre; Google, bu iki kod olduğunda sayfaları indexliyor mu?
Index problemi yaşayan kişiler genellikle şunu gözden kaçırıyor. Indexler bir geliyor, bir gidiyor. Yani tesadüfen bu sonuca vardığınızı söylemeye çalışıyorum.
Önerdiğiniz eklentinin sitemap kodları:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://example.com"?>
<urlset
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"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com</loc>
<lastmod>2022-01-10T11:58:50+00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.2</priority>
</url>
</urlset>All in One SEO sitemap kodları<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://example.com"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://example.com</loc>
<lastmod>2022-01-10T11:58:50+00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.2</priority>
</url>
</urlset>Demek ki; index almanız sitemap eklentisi ile ilgili değilmiş.
