PHP标头200 OK无法发送

时间:2011-11-21 13:25:31

标签: php cakephp http-headers

我正在尝试从CakePHP内的控制器发送HTTP / 1.0 200 OK

但每次我这样做时,浏览器都会收到HTTP 404 Not Found。

关注https://bugs.php.net/bug.php?id=27026,我必须发送

HTTP/1.0 299 OK

知道我错过了什么吗?

Apache 2.2.21版

PHP版本5.3.8

CakePHP 2.0

- 编辑 -

我正在使用http://rakaz.nl/projects/combine/combine.phps中的代码来合并我的javascript和css

即。 http://www.creatype.nl/javascript/prototype.js,builder.js,effects.js,dragdrop.js,slider.js

        public function combineJs($filenames) {
        $this->combine($filenames, 'javascript');
    }

    public function combineCss($filenames) {
        $this->combine($filenames, 'css');
    }

    private function combine($filenames = null, $type = null) {
        $cache    = true;
        $cachedir = ROOT.'/app/tmp/cache/combine';
        $cssdir   = ROOT.'/app/webroot/css';
        $jsdir    = ROOT.'/app/webroot/js';


        // Determine the directory and type we should use
        switch ($type) {
            case 'css':
                $base = $cssdir;
                break;
            case 'javascript':
                $base = $jsdir;
                break;
            default:
                header ("HTTP/1.0 503 Not Implemented");
                exit;
        };

        $elements = explode(',', $filenames);
        $elements = str_replace('%2F', '/', $elements);
        // Determine last modification date of the files
        $lastmodified = 0;
        while (list(,$element) = each($elements)) {

            $path = $base . '/' . $element;

            if (($type == 'javascript' && substr($path, -3) != '.js') || 
                ($type == 'css' && substr($path, -4) != '.css')) {
                header ("HTTP/1.0 403 Forbidden");
                exit;   
            }

            if (substr($path, 0, strlen($base)) != $base || !file_exists($path)) {

                header ("HTTP/1.0 404 Not Found");
                exit;
            }

            $lastmodified = max($lastmodified, filemtime($path));
        }

        // Send Etag hash
        $hash = $lastmodified . '-' . md5( $filenames );
        header ("ETag: \"" . $hash . "\"");


        if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && 
            stripslashes($_SERVER['HTTP_IF_NONE_MATCH']) == '"' . $hash . '"') 
        {

            // Return visit and no modifications, so do not send anything
            header ("HTTP/1.0 304 Not Modified");
            header ('Content-Length: 0');
        } 
        else 
        {
            // First time visit or files were modified
            if ($cache) 
            {
                // Determine supported compression method
                $gzip = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip');
                $deflate = strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate');

                // Determine used compression method
                $encoding = $gzip ? 'gzip' : ($deflate ? 'deflate' : 'none');

                // Check for buggy versions of Internet Explorer
                if (!strstr($_SERVER['HTTP_USER_AGENT'], 'Opera') && 
                    preg_match('/^Mozilla\/4\.0 \(compatible; MSIE ([0-9]\.[0-9])/i', $_SERVER['HTTP_USER_AGENT'], $matches)) {
                    $version = floatval($matches[1]);

                    if ($version < 6)
                        $encoding = 'none';

                    if ($version == 6 && !strstr($_SERVER['HTTP_USER_AGENT'], 'EV1')) 
                        $encoding = 'none';
                }

                // Try the cache first to see if the combined files were already generated
                $cachefile = 'cache-' . $hash . '.' . $type . ($encoding != 'none' ? '.' . $encoding : '');

                if (file_exists($cachedir . '/' . $cachefile)) {

                    if ($fp = fopen($cachedir . '/' . $cachefile, 'rb')) {

                        if ($encoding != 'none') {
                            header ("Content-Encoding: " . $encoding);
                        }

                        header ("HTTP/1.0 304 Not Modified");
                        header ("Content-Type: text/" . $type);
                        header ("Content-Length: " . filesize($cachedir . '/' . $cachefile));

                        fpassthru($fp);
                        fclose($fp);

                        exit;
                    }
                } 
            }

            // Get contents of the files
            $contents = '';
            reset($elements);
            while (list(,$element) = each($elements)) {
                $path = $base . '/' . $element;
                $contents .= "\n\n" . file_get_contents($path);
            }

            // Send Content-Type
            // header ("HTTP/1.0 200 OK");

            // for some reason, header 200 OK doesn't get sent, so send 299 instead
            header ("HTTP/1.0 299 OK");
            header ("Content-Type: text/" . $type);

            if (isset($encoding) && $encoding != 'none') 
            {
                // Send compressed contents
                $contents = gzencode($contents, 9, $gzip ? FORCE_GZIP : FORCE_DEFLATE);
                header ("Content-Encoding: " . $encoding);
                header ('Content-Length: ' . strlen($contents));

                echo $contents;
            } 
            else 
            {
                // Send regular contents
                header ('Content-Length: ' . strlen($contents));
                header ("Content-Type: text/" . $type);
                echo $contents;
            }

            // Store cache
            if ($cache) {

                $filepath = $cachedir . '/' . $cachefile;
                $file = new File( $filepath );
                $file->write($contents);
                $file->close();
            }

            exit;
        }   

3 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,几乎在我的显示器上扔了一个杯子。您可能需要使用标题调用的替代语法:

header('Status: 200');

PHP与服务器交互的方式似乎存在问题。

答案 1 :(得分:0)

我需要这样做才能为AWS负载平衡创建健康状况报告。

将传入的支票定向到正确加载的网页是我的诀窍。

我将状态检查程序指示到www.yourdomain.com并返回了正确的信号。

尝试在浏览器中加载页面,调试设置为2.如果蛋糕返回错误,则不会发送正确的信号。为您的控制器创建一个视图文件,以便不会恢复任何错误,您可能会开始生成正确的信号。

答案 2 :(得分:0)

CakePHP路由器存在问题以及我希望它的工作方式。它不喜欢url中的%char,如果它在URL中看到%

则会抛出404