我希望用户在未登录的情况下无法获取任何资产。谁能告诉我为什么以下内容不起作用:
http://domain-name:5000/static/index.html.
即使用户未登录,也会为用户提供 index.html 文件。
lm.login_view = "/static/login.html"
@app.route('/',defaults={'path':''})
@app.route('/static/<path:path>')
@login_required
def root():
logging.debug('Login Required - Authenticated user. Will Redirect')
return redirect(path)
谢谢!