0
我想從Heroku下載我的鏈接,但我一直在Heroku服務器上發生錯誤。當我在本地使用它時,鏈接正常工作。我正在使用HTML下載方法。我把apk文件放在我的html文件夾中,所以它應該在沒有目錄的情況下工作。與python一起使用燒瓶。Html5 - 下載鏈接失敗
下面是代碼:
<p> Download the app here: </p>
<a href="myapp.apk" download="myapp.apk"> Click here to download!</a>
這裏的錯誤:
例子:它加載到這個鏈接(不是我真正的鏈接):https://myapp.herokuapp.com/myapp.apk然後.....
Not Found
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
and
Failed to load resource: net::ERR_FAILED
有什麼想法?
你在Heroku上運行的是什麼框架。 –
我在python上使用Flask – nothingness