- 二級目錄配置
location ^~ /mobile {
root /www/wwwroot/;
try_files $uri $uri/ @router;
}
#對應(yīng)上面的@router死嗦,主要原因是路由的路徑資源并不是一個真實(shí)的路徑黔夭,所以無法找到具體的文件
#因此需要rewrite到index.html中冷守,然后交給路由在處理請求資源
location @router {
rewrite ^.*$ /mobile/index.html last;
}