remotes/1693045480750635534/spooky-22
Aevann1 2021-12-23 16:02:54 +02:00
parent 876a6c1f44
commit 0907ea77c1
1 changed files with 13 additions and 1 deletions

View File

@ -123,4 +123,16 @@ def after_request(response):
return response
from files.routes import *
@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']}/")
from files.routes import *