diff --git a/app.py b/app.py index 7968148..83d790f 100644 --- a/app.py +++ b/app.py @@ -78,12 +78,12 @@ def home(): return redirect(url_for("index", lang=helpers.get_best_lang())) -@app.route("/") +@app.route("/", strict_slashes=False) def index(lang): return helpers.render_localized_template(lang, "index.html") -@app.route("//download") +@app.route("//download", strict_slashes=False) def download(lang): return helpers.render_localized_template(lang, "download.html")