django项目中如何把sitemap.xml等静态文件放到web根目录

有两种方案

一、

url(r'^sitemap\.xml/$', TemplateView.as_view(template_name='sitemap.xml',
                                            content_type='text/xml')),

urls.py中加入新的urlpattern,用TemplateView去展示

二、

 直接交给nginx来处理,在nginx的conf文件中加入要处理的static URL和路径

location  /sitemap.xml {
    alias  /path/to/static/sitemap.xml;
}

第一种方案我没实践,应该也是ok的,我用的第二种方案

参考:http://stackoverflow.com/questions/18424260/django-serving-robots-txt-efficiently

你可能感兴趣的:(后端)