zend:baseUrl 视图助手返回空字符串
在我的网站上,当我在视图中调用 $this->baseUrl()
时,它返回一个空字符串。我希望它返回例如http://www.foobar.com/
。我需要手动设置基本网址吗?
在 Zend_Application_Resource_Frontcontroller - 配置密钥的手册中,我刚刚发现了这个:
baseUrl:应用程序的显式基本 URL(通常自动检测)
有什么想法为什么它不为我自动检测吗?
On my site, when I call $this->baseUrl()
in a view, it returns an empty string. I would expect it to return e.g. http://www.foobar.com/
. Do I need to manually set base url?
In manual to Zend_Application_Resource_Frontcontroller - configuration keys, I have just found this:
baseUrl: explicit base URL to the application (normally auto-detected)
Any ideas why it is not autodetected for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
baseUrl()
帮助器返回 Zend 应用程序的路径。使用
serverUrl()
帮助程序作为主机名。The
baseUrl()
helper returns the path to your Zend Application.Use the
serverUrl()
helper for the hostname.您是否在 application.ini 中设置了 baseurl?
手册
Did you set the baseurl in your application.ini?
Manual