项目访问路径为http://IP:8080
页面访问路径为http://IP:8080/pages/xxx时提示404
在nginx中设置以下规则
location / {
alias /html/;
add_header Cache-Control no-cache;
expires -1h;
try_files $uri $uri/ /index.html;
}
项目访问路径为http://IP:8080
页面访问路径为http://IP:8080/pages/xxx时提示404
在nginx中设置以下规则
location / {
alias /html/;
add_header Cache-Control no-cache;
expires -1h;
try_files $uri $uri/ /index.html;
}