系统相关
首页 > 系统相关> > Nginx位置,带斜线和不带斜线

Nginx位置,带斜线和不带斜线

作者:互联网

我想创建一个同时捕获http://example.comhttp://example.com/的位置,以及一个同时捕获其他所有内容的位置.第一个将提供静态html,另一个将用于api和其他内容.我已经试过了:

location ~ /?${
    root /var/www/prod/client/www;
}

location ~ /.+ {
    # https://stackoverflow.com/questions/21662940/nginx-proxy-pass-cannot-have-uri-part-in-location
    rewrite ^/(.*) /$1 break;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-NginX-Proxy true;

    proxy_connect_timeout       1s;
    proxy_send_timeout          30s;
    proxy_read_timeout          300s;
    send_timeout                300s;

    proxy_redirect off;
    proxy_pass http://backendPro;
}

但是不起作用.我在第一个位置尝试了很多选项,但是当第一个匹配时,第二个不匹配,反之亦然:

location / {
location ~ \/?${
location ~ ^/?${

解决方法:

实际上,它要简单得多:

location = / {
  # Exact domain match, with or without slash
}

location / {
  # Everything except exact domain match
}

因为location = /更具体,所以仅调用域名时始终首选(位置块的顺序无关紧要).

Nginx中所需的正则表达式要比您想象的要少得多,因为正常的位置块会匹配每个与开头匹配的URL,因此位置/ bla会匹配以/ bla开头的域中的每个URL(例如/ blabla或/ bla / blu,或/bla.jpg).如果您需要捕获组并对其进行处理,我主要建议使用正则表达式.

标签:nginx,nginx-location
来源: https://codeday.me/bug/20191025/1926170.html