Python bottle 最小重定向示例

要在 bottle 中重定向,使用此代码片段:

bottle_redirect_example.py
response.status = 303
response.set_header('Location', 'https://techoverflow.net')

303HTTP 响应代码 See Other。在某些应用中,你可能想使用 301永久重定向)或 307临时重定向)代替。

完整示例:

bottle_redirect_full.py
#!/usr/bin/env python3
from bottle import route, run, response

@route('/')
def redirect():
    response.status = 303
    response.set_header('Location', 'https://techoverflow.net')

run(host='localhost', port=9000)

Check out similar posts by category: Python