用于静态文件夹调用的Flask和默认文件(index.html等)

时间:2016-03-11 21:34:15

标签: python flask webserver

使用Flask,提供静态内容

如何配置刻录机以提供index.htmlindex.html
当用户请求文件夹时......如"http://example.com/xxx/"


(作为Apache / IIS / nginx / etc中的默认行为。)

1 个答案:

答案 0 :(得分:2)

您可以使用send_from_directory从目录发送文件,这在某些情况下非常方便:

@app.route('/somepath/<path:path>')
def send_html(path):
    return send_from_directory('some_folder', path)