如何获得Pylons的绝对网址?
要使用Routes生成完全限定的URL,请qualified=True
在url()
调用中使用关键字.
例:
print url("blog", id=123, qualified=True) # depending on routing configuration, # would print something like "http://somehost/blog/123"
如果您的Web应用程序在负载均衡器或反向代理之后运行,则可能会遇到生成的URL指向后端应用程序服务器而不是前端代理/负载均衡器的问题.您可以使用host
参数来纠正:
print url("blog", id=123, qualified=True, host="example.com") # ==> "http://example.com/blog/123"
有关更多选项和调整,请参阅路线手册.