Adding a sitemap to the site
Django comes with a sitemap framework, which allows you to generate sitemaps for your site dynamically. A sitemap is an XML file that tells search engines the pages of your website, their relevance, and how frequently they are updated. Using a sitemap will make your site more visible in search engine rankings because it helps crawlers to index your website’s content.
The Django sitemap framework depends on django.contrib.sites
, which allows you to associate objects to particular websites that are running with your project. This comes in handy when you want to run multiple sites using a single Django project. To install the sitemap framework, we will need to activate both the sites
and the sitemap
applications in your project.
Edit the settings.py
file of the project and add django.contrib.sites
and django.contrib.sitemaps
to the INSTALLED_APPS
setting. Also, define a new setting...