在zend中删除http响应头

时间:2013-04-14 16:48:47

标签: php zend-framework http-headers

我在Zend Framework(1)中遇到了一个应用程序的问题。

在一个特定的操作中,我尝试删除一些标题,但作为回应,我仍然收到这些标题:

    $this->getResponse->clearAllHeaders()
                      ->clearRawHeaders();
    $this->getResponse->setHeader('A-Header', 'headervalue');

我希望回复是:

    HTTP/1.1 XXX Some HTTP status code
    A-Header: headervalue

但它是:

   HTTP/1.1 XXX Some HTTP status code
   Date: Sun, 14 Apr 2013 16:26:59 GMT
   Server: Apache/2.2.16 (Debian)
   X-Powered-By: PHP/5.3.3-7+squeeze15
   Vary: Accept-Encoding
   Content-Length: 0
   Content-Type: text/html

如何删除日期,服务器,X-Powered-By,Vary,Content-Lenght,Content-Type?至少Content *标题。

谢谢

1 个答案:

答案 0 :(得分:7)

这些标题由Apache附加。

您可以使用mod_headers来控制其行为:

http://httpd.apache.org/docs/2.2/mod/mod_headers.html

示例:

<IfModule mod_headers.c>
  Header unset Server
  Header unset X-Powered-By
</IfModule>