I would like to set the repsonse mime type to
application/xhtml+xml
How and where do I set that in Zend Framework? Thanks for your help.
I would like to set the repsonse mime type to
application/xhtml+xml
How and where do I set that in Zend Framework? Thanks for your help.
In your controller action:
$this->getResponse()->setHeader('Content-type', 'application/xhtml+xml');