0

在瓶子里,如何在一页中从一个 url 跳转到另一个 url?

    import webbrowser
    webbrowser.open('http://localhost:8080/login.html')

我像上面一样尝试过,但它没有在一页中打开!我希望它被重定向,但不引发 303 或 302 错误!

4

1 回答 1

5

听起来可能(?)您正在寻找一种方法来重定向传入的 HTTP 请求。您提到不想返回 302 或 303(为什么不,确切地说?),所以这是使用 301(“永久移动”)的方法:

@route('/hello')
def hello():
    bottle.redirect('/the/destination/page', 301)
于 2013-08-29T01:25:45.963 回答