I tried the following on my 404 error page to create a link back to the link so that I did not have to rely on javascript.
<?php $this->set('refer', $this->referer()); ?>
<p><?php echo '<a href="'.$refer.'">Back to previous page</a>'; ?></p>
However, this does not work ... Any ideas why? This code is executed in/Errors/error404.ctp
source
share