ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 301-й редирект URL'a с парам етрами



Hello burbuil,

Wednesday, April 7, 2010, 6:01:57 PM, you wrote:

> Доброго времени суток.

> Нужно сделать 301-й редирект:

>    /programs/detail.php?id=648 на /programs/qqq/
>    /ill/detail.php?section_id=113&id=549 на /xxx/yyy/zzz/


> Правила вида:

>     rewrite ^/programs/detail\.php\?id=648$ /programs/qqq/ permanent;
>     rewrite ^/ill/detail\.php\?section_id=113&id=549$ /xxx/yyy/zzz/ permanent;

> не работают. Предположительно это из-за ?

location = /programs/detail.php {

    if ($arg_id = 648) {
        rewrite ^ /programs/qqq/ permanent;
    }
    ...
    fastcgi_pass ...;
}

location = /ill/detail.php {

    set $redir 0;

    if ($arg_section_id = 113) {
        set $redir 1;
    }

    if ($arg_id = 549) {
        set $redir 2;
    }

    if ($redir = 2) {
        rewrite ^ /xxx/yyy/zzz/ permanent;
    }
    ...
    fastcgi_pass ...;
}

-- 
Best regards,
 Denis                            mailto:denis@xxxxxxxxxx


_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.