如何在Heroku上部署收藏夹图标?
我的Hello worldHeroku应用程序具有以下代码。同样在项目的根文件夹中,我有一个favicon.ico。 import os from flask import Flask app = Flask(__name__) html = ''' <!doctype html> <html> <head> <link rel="shortcut icon" href="/webmasters//favicon.ico"> <title>Hello world!</title> </head> <body> <p>Hello world!</p> </body> </html> ''' @app.route('/') def index(): return html if __name__ == '__main__': port = int(os.environ.get('PORT', 5000)) app.run(host='0.0.0.0', port=port) 浏览到我的应用程序时,看不到favicon。另外,当我检查时heroku logs,我得到以下404行: 2012-02-14T05:23:29+00:00 app[web.1]: …