1

我想提供文件,如robots.txt,humans.txtmanifest.json.

我看到了文档,我没有找到解决方案,我发现view.render只提供 HTML 而不是文本或 JSON 或任何其他文件。

4

1 回答 1

0

添加文件夹路径和别名config/storage.py

# config/storage.py

STATICFILES = {
    'storage/static': 'static/',
    'storage/compiled': 'static/',
    'storage/uploads': 'static/',
    'storage/root': '/' # add this line
}

root在里面创建文件夹storage并放入robots.txt文件root夹。

访问localhost:8000/robots.txt

于 2018-10-07T16:56:29.393 回答