Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 tinyurl 克隆来学习涡轮齿轮。我想知道如何将我的浏览器从我的cherrypy/turbogears 应用程序重定向到外部网站(比如 www.yahoo.com)?
我用谷歌搜索了它,但找不到太多有用的信息。
只需引发一个 HTTPRedirect 异常,它位于cherrypy 命名空间中。像这样:
raise cherrypy.HTTPRedirect("http://www.yahoo.com")