remotes/1693045480750635534/spooky-22
Aevann1 2021-12-24 05:19:48 +02:00
parent 3f7e92e650
commit f015c85514
1 changed files with 2 additions and 2 deletions

View File

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