我在服务器块内跟踪了两个位置块。每当访问特定的URL mockup/index.html
时,我都想返回一个静态文件mockup
。
location =/mockup {
rewrite ^ /index.html break;
root mockup;
}
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
......
}
这很好用,但是index.html包含其他资源css, imgs, js
文件,它们具有相对路径e.g. src="imgs/gekas.png"
,并且都与第二个块匹配。
如何编写规则以将所有这些相对URL匹配到同一位置=/mockup
块?