关于远程服务器下载问题,Python语言,请大佬指点,谢谢大家
程序代码:
#我的远程服务器的下载模块 @app.route('/file/download/<filename>', methods=['GET']) def file_download(filename): def send_chunk(): # 流式读取 store_path = 'app/templates/file-change/%s' % filename print(store_path) with open(store_path, 'rb') as target_file: while True: chunk = target_file.read(20 * 1024 * 1024) # 每次读取20M if not chunk: break yield chunk return Response(send_chunk(), content_type='application/octet-stream')
我吧代码放到我本地服务器跑可以下载文件,在远程服务器运行不能下载报问题浏览器显示 Not Found
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
服务器显示 192.168xx xx - - [30/May/2019 04:18:54] "GET /download/4.html HTTP/1.1" 404 -
另外我的文件地址拼写没问题就在 app/templates/file-change文件夹下
我猜想是因为我的服务器拒绝访问它的文件和权限有关? 因为我尝试用本地电脑连接服务器直接查看文件它是拒绝的
在本地自己运行时没问题的
请问我怎么做???请大佬指点下万分感谢