使用Flask,提供静态内容
如何配置刻录机以提供index.html
或index.html
当用户请求文件夹时......如"http://example.com/xxx/"
答案 0 :(得分:2)
您可以使用send_from_directory从目录发送文件,这在某些情况下非常方便:
@app.route('/somepath/<path:path>')
def send_html(path):
return send_from_directory('some_folder', path)