Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
исключения для правил
- To: nginx-ru@xxxxxxxxx
- Subject: исключения для правил
- From: "juves" <nginx-forum@xxxxxxxx>
- Date: Fri, 10 Sep 2010 10:26:39 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=AK0CPIsvyIrsdkAclSslTo9ewxYJgAWdbZO5HDv+XhE=; b=nyN33zojFHmFH+gP+HGKSw6Rgkezh4oQhwwdncE7UxxbfD6tGFuYGnINPgCDva+UB5q198p3t7TIp48FLiQsgyHdgr3HOMW9556M3XSCwyfkePoQBjcF2fuOUO19sp3p;
Имеется следующее описание правил
[code]
location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include "/etc/nginx/fastcgi_params.conf";
fastcgi_param SCRIPT_FILENAME
/home/htdocs$fastcgi_script_name;
}
location / {
index index.php index.htm index.html;
try_files $uri $uri/ /index.php?q=$uri;
}
location /folder/ {
index index.php;
rewrite ^/folder/(.*).htm$
/folder/index.php?id=$1 break;
}
[/code]
как в этом случае задать исключения на
существующие файлы или директории,
чтобы предыдущие строки их не
обрабатывали, к примеру на folder, ибо при
обращении к нему запрос уходит на
расположенный в корневой файл скрипта,
а не в эту папку
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,129189,129189#msg-129189
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|