页面刷新报错如下:
解决方法
修改nginx.conf如下:
location / {
root html/jeecg-web;
index index.htm index.html;
try_files $uri $uri/ /index.html; #解决页面刷新404问题
}
2022-09-14 16:14:57
页面刷新报错如下:
修改nginx.conf如下:
location / {
root html/jeecg-web;
index index.htm index.html;
try_files $uri $uri/ /index.html; #解决页面刷新404问题
}