Does anyone know if flask redirect is able to open a link / URL in a new tab?
@app.route('/test')
def my_page():
return redirect('http://mylink.com', 301)
I would like if the mylink website opened in a new tab, any insights?
As far as I know that would not be a flask issue. You have to open a new tab within your html code or with Javascript.
example:
<a href="http://mylink.com" target="_blank">Link</a>
The server has no power over what the browser does in this case.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With