This commit is contained in:
Aevann1 2021-12-23 18:40:17 +02:00
parent 6f28956493
commit c6b3a85da2

View file

@ -125,14 +125,9 @@ def after_request(response):
@app.route("/<path:path>", subdomain="www")
@app.route("/<path:path>", subdomain="old")
def sub_redirect(path):
return redirect(f"https://{app.config['SERVER_NAME']}/{path}")
@app.route("/", subdomain="www")
@app.route("/", subdomain="old")
def sub_redirect2():
return redirect(f"https://{app.config['SERVER_NAME']}/")
def sub_redirect(path):
return redirect(f"https://{app.config['SERVER_NAME']}{request.full_path}")
from files.routes import *