如何从一个页面跳到另一个页面?

时间:2013-08-28 14:35:13

标签: bottle

在瓶子里,如何在一个页面中将一个网址跳转到另一个网址?

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

我上面尝试了,但它没有在一个页面中打开!我希望它是重定向,但不会引发303或302错误!

1 个答案:

答案 0 :(得分:5)

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

@route('/hello')
def hello():
    bottle.redirect('/the/destination/page', 301)