以下块
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
指令,所以:
这与假如邪恶nginx 的?
如果是,那么是否有其他
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;
}
...
}