运行flask Web应用程序时出现内部服务器错误500

时间:2020-04-08 18:00:03

标签: python html flask

内部服务器错误

服务器遇到内部错误,无法完成您的请求。服务器过载或应用程序错误。

烧瓶应用程序代码为:

from flask import Flask, render_template
import numpy as np
app = Flask(__name__)
@app.route('/')
def home():
    return render_template("index1.html")
if __name__ == "__main__":
   app.run(debug = True)

index1.html是:

<html>
<body>
<h1>This is index page...</h1>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

烧瓶需要一定的结构。所有模板(html文件)都必须位于目录templates中。所以,我假设您当前的结构是这样的

project/
|- app.py
|- index1.html

正确吗?更改为此

project/
|- templates/
|  |- index1.html
|- app.py