nginx if 语句在 location 中返回 404

nginx if 语句在 location 中返回 404

以下块

location / {
    if ($http_origin ~* (https?://[^/]*\.example\.com(:[0-9]+)?)) {
        add_header 'Access-Control-Allow-Origin' "$http_origin";
    }
    try_files $uri $uri/ /index.php?$args;
}

…导致 404,因为上述代码从未到达try_files指令,所以:

  1. 这与假如邪恶nginx 的?

  2. 如果是,那么是否有其他http_origin不使用 if 语句的方法来测试?

我已经使用 nginx > 1.4 (1.4.6、1.7、1.7.8) 尝试过此操作。

答案1

我会用map

map $http_origin $cors_header {
    default "";
    "~^https?://[^/]+\.example\.com(:[0-9]+)?$" "$http_origin";
}

server {
    ...
    location / {
        add_header Access-Control-Allow-Origin $cors_header;
        try_files $uri $uri/ /index.php;
    }
    ...
 }

相关内容