解决方案:
location / {
root html;
index index.html index.htm;
-----------------------------------------
try_files $uri $uri/ @router;
-----------------------------------------
}
location @router{
-----------------------------------------
rewrite ^.*$ /index.html last;
-----------------------------------------
}
高亮显示部分是重点
网友评论