location / {
# 记得修改 root 所指的目录
root /var/www/html;
try_files $uri $uri/ @router;
index index.html index.htm;
}
location @router {
rewrite ^.*$ /index.html last;
}
location / {
# 记得修改 root 所指的目录
root /var/www/html;
try_files $uri $uri/ @router;
index index.html index.htm;
}
location @router {
rewrite ^.*$ /index.html last;
}