Mi controlador:
Código PHP:
class InfoController extends Zend_Controller_Action
{
public function sitemapAction(){
$this->_helper->viewRenderer->setNoRender();
$this->_helper->getHelper('layout')->disableLayout();
$this->getResponse()->setHeader('Content-Type', 'text/xml; charset=utf-8');
$this->view->navigation()->sitemap()->setFormatOutput(true);
echo $this->view->navigation()->sitemap();
}
}
Código HTML:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"/>