Re: Присутствие "?" в location

Igor Sysoev igor на sysoev.ru
Вс Окт 9 16:47:47 UTC 2011


On Sun, Oct 09, 2011 at 08:47:28AM -0400, pumamd wrote:
> Вобшем нужно сделать кэширование
> страницы с ссылкой http://site.ru/index.php?page=bans.
> 
> конфиг:
> 
> location ~* "/index.php?page=bans" {
>             fastcgi_pass    unix:/var/run/php-fpm.sock;
>             fastcgi_index    index.php;
>             fastcgi_param    SCRIPT_FILENAME 
> $document_root$fastcgi_script_name;
>             include        fastcgi_params;
>             
>             fastcgi_cache bans;
>             fastcgi_cache_valid 200 301 302 304        30s;
>             fastcgi_cache_valid 404                    1m;
>             fastcgi_cache_key
> "$request_method|$http_if_modified_since|$http_if_none_match|$host|$request_uri";
>             fastcgi_hide_header "Set-Cookie";
>             fastcgi_ignore_headers "Cache-Control" "Expires";
> }
> 
> Но кэширование не реагирует на данную
> URI.
> 
> Пробовал ешё так:
> location ~* "/index.php?page=bans" {
> location ~* "/?page=bans" {
> location ~* "index.php?page=bans" {
> location ~* "?page=bans" {
> location ~* "/index.php\?page\=bans" {
> location ~* "index.php\?page\=bans" {
> location ~* "/\?page\=bans" {
> location ~* "\?page\=bans" {
> 
> Неодно не помогло из этих
> 
> ПС данный location блок стойт первым из
> всех "location" в блоке "server"

nginx проверяет запрос без query string:
http://nginx.org/en/docs/http/request_processing.html#simple_php_site_configuration


-- 
Игорь Сысоев
http://sysoev.ru



Подробная информация о списке рассылки nginx-ru