我正在尝试将特定模式的所有路径与某些别名匹配,但它不起作用。
location /*/ {
alias /some/path;
}
我的要求是任何网址,例如http://<domain>/{variable}
,应该转到别名并调出默认页面。网址http://example.com/xyz/hello.html
和http://example.com/abc/hello.html
应该解析到同一位置并引用同一页面。
我如何实现这一目标?
答案 0 :(得分:0)
这样的事情:
rewrite ^/(.*)/(.*)$ /$2 last;
location / {
root /home;
}