如何重定向到管理员的上一页?


Answers:


27

尝试这个:

$this->_redirectReferer();

它所做的不只是重定向到上一页。如果您在url中指定一个参数uenc,它将认为它是引荐来源网址。


谢谢,它按我预期的那样正常工作。我通过了位于中的函数Mage_Core_Controller_Varien_Action。我认为Mahmood Rehman的答案包含通过此_redirectReferer()功能完成的开发。
Sukeshini

9

试试这个代码:

 Mage::app()->getResponse()->setRedirect($_SERVER['HTTP_REFERER']);
        Mage::app()->getResponse()->sendResponse();
            exit;

这工作得很好。非常感谢。当您Mage_Core_Controller_Varien_Action上课时,您会发现_redirectReferer()功能与您的答案相类似。感谢和+1
Sukeshini
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.