Is there any way in Zend Framework to grab the url of the page the user visited last?
I don\'t really want to use $_SERVER[\'HTTP_REFERRER\'].
$_SERVER[\'HTTP_REFERRER\']
If you want to do it in Module.php?
I have find a small solution
$headers = new \Zend\Http\PhpEnvironment\Request;
$headers->getServer('HTTP_REFERER')