Rewrite a URL with Flask Rewrite a URL with Flask flask flask

Rewrite a URL with Flask


I think you could be interested in redirect behavior

from flask import Flask,redirect

then use

redirect("http://www.example.com", code=302)

see: Redirecting to URL in Flask