我关心的网站应该可以从mywebsite.com/mr访问,并且不同于位于mywebsite.com/的网站.该网站位于/ fullpath(简化简称)网站需要提供三种内容:
>位于/fullpath/index.html的索引文件.
>其他html文件(浏览器中不显示.html扩展名).
>静态资源(js / css / img)位于/ fullpath和子目录中.
我尝试改变了try_files中匹配的顺序,发现它们都工作的情况,而不是在同一时间:
location /mr {
default_type "text/html";
alias /fullpath;
# with this one 1 and 3 work
# try_files $uri/index.html $uri.html $uri;
# with this one 2 and 3 work
# try_files $uri $uri.html $uri/index.html;
# with this one 1 and 2 work
try_files $uri.html $uri/index.html $uri;
}