zend:baseUrl 视图助手返回空字符串

发布于 2025-01-03 06:31:11 字数 399 浏览 2 评论 0原文

在我的网站上,当我在视图中调用 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青巷忧颜 2025-01-10 06:31:11

baseUrl() 帮助器返回 Zend 应用程序的路径。

使用 serverUrl() 帮助程序作为主机名。

The baseUrl() helper returns the path to your Zend Application.

Use the serverUrl() helper for the hostname.

猫九 2025-01-10 06:31:11

您是否在 application.ini 中设置了 baseurl?

resources.frontController.baseUrl = "/subdir"

手册

Did you set the baseurl in your application.ini?

resources.frontController.baseUrl = "/subdir"

Manual

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文