Nginx Drupal Boost 静态缓存中未加载异常字符

Nginx Drupal Boost 静态缓存中未加载异常字符

(设置:Drupal 6.20、Boost 1.18、Nginx 0.7.67)

当提升节点的URL包含字符或时中国新闻网新闻中心,该节点被正确的缓存在缓存目录中,并且正确的反映URL。

但是当访问该节点时,却加载了未缓存的节点。

以下是我使用的 Nginx 规则:

server {
    server_name *.com *.net *.org;
    location / {
        root   /var/www/html/$host;
        index  index.php;
        set $boost "";
        set $boost_query "_";
        if ( $request_method = GET ) {
          set $boost G;
        }
        if ($http_cookie !~ "DRUPAL_UID") {
          set $boost "${boost}D";
        }
        if ($query_string = "") {
          set $boost "${boost}Q";
        }  
        if ( -f $document_root/cache/normal/$host$request_uri$boost_query.html ) {
          set $boost "${boost}F";
        }
        if ($boost = GDQF){
          rewrite ^.*$ /cache/normal/$host/$request_uri$boost_query.html break;
        } 
        if (!-e $request_filename) {
          rewrite  ^/(.*)$  /index.php?q=$1  last;
          break;
        }
    }
    location ~ \.php$ {
            fastcgi_pass    127.0.0.1:9000;
            fastcgi_index   index.php;
            fastcgi_param   SCRIPT_FILENAME /var/www/html/$host$fastcgi_script_name;
            include         fastcgi_params;
    }
}

我尝试过添加charset utf-8;underhttp {和 under server {。它们都不起作用。

答案1

尝试在 ifs 中使用 $uri 而不是 $request_uri。$request_uri 未经处理,因此 % 编码实体仍然被编码。$uri 已被解码,这可能是您所需要的。

相关内容