The framework itself is there a way to provide to get back the Url?Similar to the $_SERVER [' HTTP_REFERER '] the value of the same
You can use getHeader()
<?php $referer = $this->request->getHeader('REFERER');
Thanks, problem solved