有没有一种简单的方法将日志记录(例如 Zend_Log)应用于 Zend_Controller_Action_Helper_Redirector?
我有一个应用程序,当我将其放入服务器的子目录(例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
My_
命名空间配置正确,该插件将由PluginLoader
加载,而不是默认的Zend_Controller_Action_Helper_Redirector
使用 - 标准方式
$this->; _helper->重定向器(...)
if
My_
namespace configured right, this plugin will be loaded byPluginLoader
instead of defaultZend_Controller_Action_Helper_Redirector
usage - standard way
$this->_helper->redirector(...)