Friday, January 3, 2020

Abhijeet Pal: Creating Sitemaps in Django

Django comes with baked-in functionality for generating sitemaps dynamically using the sitemap framework. A sitemap is an XML file that informs search engines such as Google, the pages of your website, their relevance, and how frequently they are updated. Using sitemaps facilitates crawlers indexing the site, therefore sitemap plays a crucial role in modern SEO …

The post Creating Sitemaps in Django appeared first on Django Central.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...