location / { root /usr/share/nginx/html/web/;#前端文件路径 index index.html index.htm; try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; }