Features
Download and Submit Your Sitemap
Download your sitemap XML and submit it to Google Search Console and Bing Webmaster Tools to accelerate indexing.
Downloading Your Sitemap
Once a crawl completes, a Download button appears on your sitemap card in the dashboard. Clicking it saves the sitemap as an XML file named {hostname}-sitemap.xml — for example, example.com-sitemap.xml.
The file follows the standard urlset format and is accepted by all major search engines:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/</loc>
</url>
<url>
<loc>https://example.com/about</loc>
</url>
</urlset>To make the sitemap accessible to search engines, upload this file to the root of your web server so it's reachable at https://yourdomain.com/sitemap.xml.
Google Search Console
Submitting your sitemap to Google tells Googlebot about your site's structure and speeds up indexing of new and updated pages.
- Open Google Search Console and sign in with your Google account.
- Select the property (website) you want to submit the sitemap for. If you haven't verified ownership yet, follow the on-screen verification steps first.
- In the left sidebar, click Sitemaps (under the Index section).
- In the Add a new sitemap field, enter
sitemap.xml(or the full path if you uploaded it to a subdirectory, e.g./sitemap.xml). - Click Submit.
Processing takes time
Bing Webmaster Tools
Bing has its own webmaster portal and handles sitemap submission separately from Google. The process is similar:
- Open Bing Webmaster Tools and sign in with a Microsoft account.
- Add and verify your site if you haven't already. Bing supports verification via XML file, meta tag, or CNAME record.
- From the left menu, select Sitemaps.
- Click Submit sitemap and enter the full URL of your sitemap — for example,
https://example.com/sitemap.xml. - Click Submit. Bing will fetch and process the file, usually within a few hours.
Resubmitting After Changes
Whenever you refresh your sitemap — after publishing new content, restructuring your site, or fixing broken links — it's good practice to resubmit to both search consoles. This signals to search engines that the sitemap has changed and prompts a fresh fetch.
If your sitemap file is hosted at the same URL as before, you don't need to re-enter the URL in Google Search Console — just click Resubmit next to the existing entry. Upload the updated file to your server first.
Common Issues
| Error | Likely cause & fix |
|---|---|
| Couldn't fetch sitemap | The search engine couldn't reach the file. Make sure you've uploaded the XML to your server and it's publicly accessible at the URL you submitted. Check for authentication walls or firewalls blocking bot user-agents. |
| Sitemap contains URLs not on this property | The sitemap includes URLs from a domain that doesn't match your verified property in Search Console. Verify domain ownership or use the exact property that matches the URLs in your sitemap. |
| Has errors / warnings | Some URLs in the sitemap returned errors when Google tried to crawl them. Open the sitemap detail view in the dashboard, filter for issues, and fix the underlying 404s or server errors on your site. |