Vue项目部署Nginx刷新404的问题

zhuanbike 2022-8-20 579

nginx正确的配置:

1、如果是在根目录则配置如下

location / {
  root  /;
  index index.html;
  try_files $uri $uri/ /index.html;
}

2.如果是有特定目录

location /xx/xx/ {
  root  /;
  index index.html;
  try_files $uri $uri/ /xx/xx/index.html;
}


最新回复 (0)
发新帖