server{
listen 9091;
server_name localhost;
root file_route;
index index.html index.htm ;
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
}
极简nginx前端配置
最新推荐文章于 2024-05-08 15:49:23 发布