欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-20 15:06:57
...
有两种方案

一、

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

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

二、

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

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

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

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

以上就介绍了django项目中如何把sitemapxml等静态文件放到web根目录,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。