这可能可能重复,但没有像我一样找到确切的问题。
我有一个 Ubuntu 服务器,它在 Apache 上运行 Flask,问题是我有下一个路径:
/var/www/someapp/video.mp4. And app.py file inside
/var/www/someapp/app.py and inside of this file I need to access
到这个video.mp4
文件。我尝试通过以下方式访问它:
'/var/www/someapp/video.mp4' or '/video.mp4' or './video.mp4'
但没有任何作用。浏览器显示
404 或 NS_BINDING_ABORTED。
我猜想访问此文件有问题,但不确定。
有什么建议为什么这不起作用以及如何修复它吗?