|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: index internal redirect
- To: nginx-ru@xxxxxxxxx
- Subject: Re: index internal redirect
- From: "Kirill A. Korinskiy" <catap@xxxxxxxx>
- Date: Thu, 16 Jun 2011 23:59:04 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=/lrc4wQZH3GQQOO+jILv9O823EzLSDhvf2G1tdfbgo0=; b=fZyklc6vT1Hc993nL5PM3JFvm7Dx2CPgzJdXWO7dcOeD5VsHtpvzrF8aRalVxF2tQu U6mE/w9YW44WIl2bOzoHxSMDAbkDylLM14a/LldmoyG+76uiiA3+L1YKWjJxKqo7F31j Cl1AZWIoetQVSEB60DQHWSjn9qD7xD11H1k2o=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=glrgYVBWQMj9IC3VOdq8XlrXW+zLezagNvcG4ABfJyN/kD5EZbBPoWCmb03tiJxEv6 cDgj2oGxEQC8VvFCObZOxqmp/CG6+LY2KSK9KoH2hHR2OpW5UmNaXKrc1yLHXnpUU/Qa T8JnJ2yoXNAwsk8qDPmBYizi6QpPIAuNtvHP0=
- In-reply-to: <20110616182746.GB55913@xxxxxxxxx>
- References: <20110616182746.GB55913@xxxxxxxxx>
2011/6/16 Igor Sysoev <igor@xxxxxxxxx>
Сейчас при нахождении индексного файла делается внутрений редирект.
Это позволяет работать конфигурациям типа
location / {
index index.php;
}
location ~ \.php$ {
...
}
Но иногда нужно, чтобы обработка проиходила без редиректа,
например, для запрещения явного запроса /index.html, хотя это
можно решить так:
location = / {
index index.html;
}
location = /index.html {
internal;
}
У меня давно есть мысль сделать это настраиваемым, не могу только
придумать имя для директивы:
location = / {
index index.html;
index_stays on|off;
}
А чем это не try_files? --
wbr, Kirill
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|
|
|