URL重写
location /{ try_files $uri /index.html; index index.html index.htm index.php; }
Nginx代理
location ^~/home/{ rewrite ^/home/(.*)/$1 break; proxy_pass https://home-api.abc.com/home/; }
location /{ try_files $uri /index.html; index index.html index.htm index.php; }
location ^~/home/{ rewrite ^/home/(.*)/$1 break; proxy_pass https://home-api.abc.com/home/; }