Fixed index page redirecting

This commit is contained in:
Halhadus 2024-12-19 01:49:36 +03:00
parent d60ec051e0
commit c1b74bb35f

View file

@ -66,6 +66,8 @@ def verifycert():
@app.route('/<path:path>')
def catch_all(path):
if path == '':
return flask.redirect('https://halhadus.rocks')
if not path == 'musicstatus.html' or not path == 'verifykey':
return flask.redirect(f'https://halhadus.rocks/{path}')