如何重定向到 404 上的特定网址
@error(404)
def error404(error):
return 'Nothing here, sorry'
这就是bottle框架
中响应404的方式。但在 404 上,我想重定向到特定的网址,例如 http://abc.com/。是否可以?
@error(404)
def error404(error):
return 'Nothing here, sorry'
This is the way to response 404 in bottle framework
. But On 404 I want to redirect to particular url say http://abc.com/. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当创建 urlobject 时,.code 实例返回页面的代码,
When a urlobject is created the .code instance returns the code of the page,
编辑我不是100%确定这可以完成,我现在无法测试它,但我稍后会测试它并更新答案,除非你比我先一步。
EDIT I'm not 100% sure this can be done, and I can't test it right now, but I'll test it later and update the answer unless you beat me to it.