1. # 跳转到192.168.0.140:8000/api/index.html
    2. server{
    3. listen 80;
    4. server_name localhost;
    5. location ~ /api/ {
    6. proxy_pass http://192.168.0.140:8000;
    7. }
    8. }

    location 指令,用于匹配URL,语法如下:

    1. location [ = | ~ | ~* | ^~ ] uri {
    2. }

    = :用于不含正则表达式的 uri 前,要求请求字符串与 uri 严格匹配,如果匹配成功,就停止继续向下搜索并立即处理该请求
    ~:用于表示 uri 包含正则表达式,并且区分大小写
    ~*:用于表示 uri 包含正则表达式,并且不区分大小写
    ^~:用于不含正则表达式的 uri 前,要求 Nginx 服务器找到标识 uri 和请求。字符串匹配度最高的 location 后,立即使用此 location 处理请求,而不再使用 location块中的正则 uri 和请求字符串做匹配。