1

所以我有 2 条路线,第 1 条路线不会停止路线匹配,正如文档所说的那样:

location ^~ /p/ {
    root /www/domain.com/;
    try_files $uri $uri/ /path/index.html;
}

location ^~ /v/ {
    root /www/domain.com/;
    try_files $uri $uri/ /path/index.html;
}

location ^~ / {
    root /www/domain.com/php_www/;
    try_files $uri $uri/ /index.php;

        location ~* \.(?:php|html)$ {   
            try_files $uri =404;
            fastcgi_pass 127.0.0.1:9000;
            include /etc/nginx/fastcgi_params;
        }

        auth_basic "Staging";
        auth_basic_user_file /www/.htpasswd;

}

所以如果我有这样的网址:

http://domain.com/p/1234567890

它匹配最后一条路线,而不是第一条路线。问题浮出水面是因为我们的一个人在应用程序中添加了一个页面:

http://domain.com/privacy

这是由 FIRST 路线拾取的??这就是问题的来源。

我遇到的问题是^~。在文档中,它说一旦匹配,它将停止匹配,但是最后一条路线始终是加载的路线。

有任何想法吗?

4

1 回答 1

0

升级到最新的 nginx,并重新排序了一些指令,现在一切正常。

于 2012-08-31T17:40:42.880 回答