Где разместить файл sitemap.xml в моем проекте django?

Я создал файл sitemap.xml с помощью Screaming Frog и теперь хочу поместить его в свой проект django, чтобы он был доступен по адресу example.com/sitemap.xml. Но я не уверен, куда его поместить? Куда мне его поместить?

You typically don't store the sitemap, but generate it dynamically. Django can do this with the sitemap framework [Django-doc]. This will dynamically change the sitemap if you thus define extra paths, or as more records are created in the database.

Вернуться на верх