I'm trying to pass an URL (or just a local file path) via the Zend setPara(). Unfortunately the router interprets this as several params.
$redirector = $this->_helper->getHelper('Redirector');
$redirector->gotoSimple('download', null, null, array('TEMP_FILE' => '/srv/www/htdocs/tmp/output.pdf'));
Apache shows error 404. The downloadAction() isn't called. So maybe there is another way to pass an entire URL from one action to another?