什么“这里不允许使用目录索引.”是指Django错误?

前端之家收集整理的这篇文章主要介绍了什么“这里不允许使用目录索引.”是指Django错误?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试调试我的Django应用程序中出现的这个奇怪的404错误.
Page not found (404)
Request Method: GET
Request URL:    http://78.198.124.245/
Directory indexes are not allowed here.
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False,and Django will display a standard 404 page.

什么“这里不允许使用目录索引”.意思?什么是目录索引?

我用Google搜索,我发现所有结果都与提供静态文件有关.但是,我不认为我这样做.这个错误是什么意思?

解决方法

检查settings.py文件中的STATIC_URL值.您希望该值是存储静态文件的子文件夹 – 通常为STATIC_URL =’/ static /’.
原文链接:https://www.f2er.com/python/241986.html

猜你在找的Python相关文章