kingbosster 发表于 2016-12-23 10:11:08

nginx rewrite last 与break

一个很简单的nginx的server配置

beacon on;
beacon_cfg /etc/nginx/conf.d/beacon.cfg /etc/nginx/conf.d/channel.cfg;
server {
listen 80;
server_name web.com;
root /var/lib/nginx/mobileapi;
location / {
indexindex.php index.htm index.html;
}
location ~ ^/((?!\.php)\w)+$ {
rewrite ^/(.*) /$1.php last;
}
location ~ ^.+\.php {
fastcgi_split_path_info ^(.+\.php)(.+)$;
fastcgi_paramPATH_INFO          $fastcgi_path_info;
fastcgi_paramPATH_TRANSLATED    $document_root$fastcgi_path_info;
fastcgi_pass    127.0.0.1:9000;
fastcgi_read_timeout 500;
fastcgi_index   index.php;
include         /etc/nginx/fastcgi.conf;
}
error_page404            /error/404.html;
error_page500 502 503 504/error/50x.html;
}


14行使用的last,last匹配以后会跳出匹配规则重新请求(测试以后发现最多匹配11次)。
如果使用break,则会走完当前location,不会再匹配后面的location,也不会跳出重新请求。不在location里的规则会仍然会生效,如error_page。
在这里如果用break代替last,则服务端会返回php文件,而不会使用fastcgi进程处理php。
页: [1]
查看完整版本: nginx rewrite last 与break