1)如何启用flask,以便在浏览器中显示m的错误,所以我不必一直尾随-f error_log?
当我使用Flask开发服务器时,我有这个
app.run(host ='superhost.gr',port = 5000,debug = True)
现在我已将其注释掉,因为eitsw由mod_wsgi运行,并将其发送到error_log文本文件中。
2)关于此代码,它不应该代表
@app.route( '/<page>' )
@app.route( '/' )
def index( page=None ):
# read environment
page = request.args.get('page', 'index.html')
当我通过浏览器尝试时:
'http://superhost.gr/' page variable equals to 'index.html'
'http://superhost.gr/something' page variable still equals to 'index.html'
在mod_wsgi模式下,这种可能性如何? 在后一个热门“网页”中,var应该等于“某物”