$ nuxt-seo tools
Validate XML sitemaps for errors and ensure search engine compliance. Test sitemap structure and optimize for better crawl efficiency.
XML sitemaps help search engines discover and crawl your pages efficiently. A valid sitemap follows specific rules:
Once validated, submit your sitemap to search engines:
Sitemap: https://example.com/sitemap.xml to your robots.txt Generate sitemaps automatically with the Nuxt Sitemap module:
# Install the module
npm install @nuxtjs/sitemap
# Configure in nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/sitemap'],
sitemap: {
// Auto-discovery enabled by default
exclude: ['/admin/**', '/api/**']
}
})Official specification for XML sitemaps including format and requirements.
Google's guide to creating and submitting sitemaps.
Submit and monitor your sitemap for indexing.
Submit your sitemap to Bing for indexing.