nginx配置,页面刷新后丢失,找不到
下面是我nginx的配置
location /api/ { proxy_pass http://server_api/;
proxy_set_header Host $http_host;
}
location /admin {
root html/dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location / {
root html/dist/blog;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
admin后台服务,直接访问 https://www.liuzepeng.com/admin 访问会定向到https://www.liuzepeng.com/adm... 页面,但是一刷新,就定向不到了,大佬帮忙看看,配置问题在哪
aaaaa,已解决了
以上是 nginx配置,页面刷新后丢失,找不到 的全部内容, 来源链接: utcz.com/p/937584.html