vue - router history 모드 에서 페이지 새로 고침 404 문제

많은 선배 들 의 해결 방안 을 검색 해 보 았 지만 문 제 를 해결 하지 못 했 습 니 다. 설정 은 다음 과 같 습 니 다.
    location / {
        root   html;
        index  index.html index.htm; 
        try_files $uri $uri/ /index.html;
    }

항상 500 원 씩 내 요.마지막 으로 연구 한 결과 선배 가 해결 해 야 할 사례 는 nginx 아래 에 전단 프로젝트 를 배치 하 는 것 이 고 제 가 있 는 상황 은 nginx 아래 에 여러 개의 전단 프로젝트 가 있 는데 경 로 를 조금 조정 한 후에 문 제 는 쉽게 해결 되 었 습 니 다.구체 적 인 방법 은 다음 과 같다.
    listen       8090;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   html;
        index  index.html index.htm; 
    }
    
    #    history   ,    404  
    location /webName/ {
        root   html;
        index  index.html index.htm; 
          try_files $uri $uri/ /webName/index.html;
    }
    ....

}`

좋은 웹페이지 즐겨찾기