用last会循环,用break,那么只有这个location之内的其它规则才会执行
也就是说,你需要在location /tags/ 里面做fastcgi_*(假设你用的是php)
location /tags/ {
rewrite ^/tags/(.*)$ /tags/t.php?tag=$1&AAA=BBB break;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
--
FROM 180.157.72.*