Nginx匹配/解析同一位置块内的相对URL

时间:2018-07-23 13:39:01

标签: nginx

我在服务器块内跟踪了两个位置块。每当访问特定的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块?

0 个答案:

没有答案