forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-23 18:40:17 +02:00
parent fd24e7d9ee
commit a9b198dd9a
1 changed files with 2 additions and 7 deletions

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 *