有兩種方案
一、
url(r'^sitemap\.xml/$', TemplateView.as_view(template_name='sitemap.xml', c/xml')),
二、
直接交給nginx URL和路徑
location /sitemap.xml { alias /path/to/static/sitemap.xml; }
參考:http://stackoverflow.com/questions/18424260/django-serving-robots-txt -efficiently
以上就介紹了django專案中如何把sitemapxml等靜態檔案放到web根目錄,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。