美文网首页《Django By Example》python
服务器访问静态文件重要配置

服务器访问静态文件重要配置

作者: 烤奶要加冰 | 来源:发表于2019-12-02 22:11 被阅读0次

    首先确认静态文件路由正确
    setting.py中的静态文件路由 static
    其次,在主应用 添加路由:
    url(r'^static/(?P<path>.*)$', serve, {'document_root': settings.STATIC_ROOT}),

    相关文章

      网友评论

        本文标题:服务器访问静态文件重要配置

        本文链接:https://www.haomeiwen.com/subject/wqkqgctx.html