时间:2021-07-01 10:21:17 帮助过:19人阅读
一、
url(r'^sitemap\.xml/$', TemplateView.as_view(template_name='sitemap.xml', c/xml')),
二、
直接交给nginx来处理,在nginx的conf文件中加入要处理的static URL和路径
location /sitemap.xml { alias /path/to/static/sitemap.xml; }
参考:http://stackoverflow.com/questions/18424260/django-serving-robots-txt-efficiently
以上就介绍了django项目中如何把sitemapxml等静态文件放到web根目录,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。