Python bottle 最小重定向示例
要在 bottle 中重定向,使用此代码片段:
bottle_redirect_example.py
response.status = 303
response.set_header('Location', 'https://techoverflow.net')303 是HTTP 响应代码 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
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow