如何从 Masonite 服务 robots.txt

How to serve robots.txt from Masonite

我想提供 robots.txthumans.txtmanifest.json 等文件。

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

config/storage.py

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

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

storage 中创建 root 文件夹,并将 robots.txt 放入 root 文件夹。

访问localhost:8000/robots.txt