Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Вопрос по location и rewrite
Здесь:
http://sysoev.ru/nginx/docs/http/ngx_http_core_module.html#location
-location /goto/ {
+location ^~ /goto/ {
В Thu, 18 Dec 2008 15:49:59 +0200
Konstantin Belov <belov1985@xxxxxxxxx> пишет:
> Добрый день.
>
> Столкнулся сегодня с небольшой проблемой :)
>
> Имеем конфиг:
>
> location /goto/ {
> rewrite ^/goto/([^/]*)(/.*)? /goto.php?host=$1&link=$2? last;
> }
>
> location ~ \.php$ {
> ..
> }
>
>
> Получается что все запросы типа "/goto/host/page.php" просто не
> попадают в первый локейшн, а сразу отдаются на upstream
> Что и где я упустил? :)
>
> Версия nginx 0.6.34
>
>
|