views:

45

answers:

1

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.

+5  A: 

In your controller action:

$this->getResponse()->setHeader('Content-type', 'application/xhtml+xml');
robdog