@astrojs/sitemap
.First of all, you should install it by running one of the following commands in your terminal:
# Using NPM
npx astro add sitemap
# Using Yarn
yarn astro add sitemap
# Using PNPM
pnpm astro add sitemap
Then, configure your astro.config.*
file to include the integration as well as your site’s URL (otherwise the integration won’t work):
// astro.config.mjs
import { defineConfig } from "astro/config";
import sitemap from "@astrojs/sitemap";
export default defineConfig({
// ...
site: "https://indexplease.com",
integrations: [sitemap()],
// ...
});
Now, once you build your site for production (via the astro build
command), you will find both a sitemap-index.xml
and sitemap-0.xml
in the output folder. The sitemap-index.xml
file contains a list of all your other sitemaps, so if you submit this to a search engine, it will automatically find all the other sitemaps and crawl them.
Finally, you need to add the following lines to your robots.txt
file, as well as your site’s <head>
, so search engines know where to find your sitemap:
// src/layouts/Layout.astro
<head>
<link rel="sitemap" href="/sitemap-index.xml" />
</head>
// public/robots.txt
User-agent: *
Allow: /
Sitemap: https://indexplease.com/sitemap-index.xml
Once you’ve created your XML sitemap, you need to submit it to each search engine. Depending on the search engine, this is done in different ways. Luckily for you, we’ve written a guide on how to do this for each relevant search engine, so check them out:
As mentioned above, you only need to submit your sitemap-index.xml
file to each search engine, as they will automatically find all the other sitemaps, such as sitemap-0.xml
, and crawl them.
Once you’ve submitted your sitemap, you can either wait for search engines to crawl your pages automatically (this can take weeks or not happen at all) or manually submit them. This is done by going to each of the aforementioned webmaster tools and going through the process of submitting them one by one. As you can imagine, this is a very time-consuming process, especially if you have a large number of pages. And it doesn’t always guarantee that your pages will actually get indexed. If this doesn’t put you off, we’ve also written guides on how to manually submit your pages for indexing for each search engine:
Most of us have better things to do than sitting around all day and going through the tedious process of manually submitting pages for indexing, or waiting ages for search engines to index them. This is one of the reasons why we built IndexPlease, which will help you do this automatically. It will only cost you 9$/month and we will automatically submit up to 400 pages per day (yes, really), for up to 5 of your sites, so they get indexed on Google, Bing, Yandex, Seznam.cz and Naver within 48 hours.
Getting your pages automatically indexed is only one of the many things you can do with IndexPlease, so if you’re interested in what else we have to offer, check out our features page.