Does FRAPPE have a redirect similer to flask

Such as going to an external url

return redirect (‘/thanks.html’)

Or is there a similer item that I can use after a script has been ran

try this:

frappe.local.response["type"] = "redirect"
frappe.local.response["location"] = "/thanks.html"

How can specify port here if I am using port otherthan 80 or 443?

You should set host_name in the site config with the port.

I already configured that one,But it is not working as I expected