有没有一种简单的方法将日志记录(例如 Zend_Log)应用于 Zend_Controller_Action_Helper_Redirector?

发布于 2024-12-04 07:41:35 字数 181 浏览 1 评论 0原文

我有一个应用程序,当我将其放入服务器的子目录(例如 blah.com/testing/ 而不是 blah.com/)时,它似乎陷入了重定向循环,尽管共享相同的代码。我认为我错误地处理了重定向内容,但 Apache 的调试输出实际上并未列出重定向,因为它们是在 PHP 内部处理的。

有没有一种简单的方法可以将记录器附加到重定向功能?

I've got an application which seems to be stuck in a redirect loop when I put it in a subdirectory of my server (e.g. blah.com/testing/ instead of blah.com/), despite sharing the same code. I think I've handled the redirection stuff incorrectly, but Apache's debugging output doesn't actually list the redirections, because they're being handled inside PHP.

Is there an easy way to attach a logger to the redirection function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

﹂绝世的画 2024-12-11 07:41:35
class My_Controller_Action_Helper_Redirector extends Zend_Controller_Action_Helper_Redirector
{
    protected function _redirect($url)
    {
        $this->myPrettyLoggingFunction();
        parent::_redirect($url);
    }
}

如果 My_ 命名空间配置正确,该插件将由 PluginLoader 加载,而不是默认的 Zend_Controller_Action_Helper_Redirector

使用 - 标准方式 $this->; _helper->重定向器(...)

class My_Controller_Action_Helper_Redirector extends Zend_Controller_Action_Helper_Redirector
{
    protected function _redirect($url)
    {
        $this->myPrettyLoggingFunction();
        parent::_redirect($url);
    }
}

if My_ namespace configured right, this plugin will be loaded by PluginLoader instead of default Zend_Controller_Action_Helper_Redirector

usage - standard way $this->_helper->redirector(...)

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