Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
$request uri и anchors
- To: nginx-ru@xxxxxxxxx
- Subject: $request uri и anchors
- From: "madad" <nginx-forum@xxxxxxxx>
- Date: Tue, 30 Oct 2012 16:32:22 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=tKzHYZwDYxyQN69iAtqevMKbR5CPWsyoIB31zaJ80to=; b=RWu1/BDpmq5Bv/k+H6eru1aNxMQTWk30hb0ny6YpQUgFjNclISqdSFdNQYx575rixvr2posPzZthEVbmYkSHxkOiNhc+PRXh9wl4UMHOQUevMePKcOBoDIGTK6duMb3h;
Добрый день.
Есть задача сделать редирект по полному совпадению URI, в котором содержится
anchor. Вот такой:
https://www.domain.com/#register?lead_type=business_trial&lead_source=website>est=false
Сделал следующее:
location / {
if ($request_uri =
/#register?lead_type=business_trial&lead_source=website>est=false) {
rewrite ^
"http://www.domain.com/register/business_trial/?lead_source=website";
break;
}
..
}
Включил debug, захожу на
https://www.domain.com/#register?lead_type=business_trial&lead_source=website>est=false
- не работает.
В логи пишет что $args пустой:
2012/10/30 20:07:15 [debug] 16144#0: *1 http args: ""
Как только убираю #register из запроса и из условия сразу все работает как
нужно.
То есть:
URL
https://www.domain.com/?lead_type=business_trial&lead_source=website>est=false
Условие if ($request_uri =
/?lead_type=business_trial&lead_source=website>est=false)
Лог 2012/10/30 20:11:03 [debug] 16182#0: *1 http args:
"lead_type=business_trial&lead_source=website>est=false"
К сожалению нужно матчить URL именно с anchor.
PS. nginx версии 1.2.3
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,232406,232406#msg-232406
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|