Nginx模式匹配的位置

时间:2015-07-09 16:26:35

标签: url nginx uri

我正在尝试将特定模式的所有路径与某些别名匹配,但它不起作用。

  location /*/ {
          alias /some/path;
  }

我的要求是任何网址,例如http://<domain>/{variable},应该转到别名并调出默认页面。网址http://example.com/xyz/hello.htmlhttp://example.com/abc/hello.html应该解析到同一位置并引用同一页面。

我如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

这样的事情:

rewrite ^/(.*)/(.*)$ /$2 last;

location / {
  root /home;
}