# 跳转到192.168.0.140:8000/api/index.html
server{
listen 80;
server_name localhost;
location ~ /api/ {
proxy_pass http://192.168.0.140:8000;
}
}
location 指令,用于匹配URL,语法如下:
location [ = | ~ | ~* | ^~ ] uri {
}
= :用于不含正则表达式的 uri 前,要求请求字符串与 uri 严格匹配,如果匹配成功,就停止继续向下搜索并立即处理该请求
~:用于表示 uri 包含正则表达式,并且区分大小写
~*:用于表示 uri 包含正则表达式,并且不区分大小写
^~:用于不含正则表达式的 uri 前,要求 Nginx 服务器找到标识 uri 和请求。字符串匹配度最高的 location 后,立即使用此 location 处理请求,而不再使用 location块中的正则 uri 和请求字符串做匹配。