I have a module built in CakePHP that is hosted within an iFrame. I need to have a redirect target the parent page. Using normal HTML I do:
<a href="#" target="_parent">
But how do I do that for CakePHP redirect?
$this->redirect('http://www.url.com');