如何从 Masonite 服务 robots.txt
How to serve robots.txt from Masonite
我想提供 robots.txt
、humans.txt
和 manifest.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
文件夹。
我想提供 robots.txt
、humans.txt
和 manifest.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
文件夹。