본문 바로가기

TIL

[Nginx] 페이지 새로고침 시 404에러 발생 해결

반응형

Vue3.js로 frontend를 구현하고있었는데, 특정 페이지 접속이후 새로고침을 하면 404에러가 발생했다. 따라서 nginx의 conf파일에 아래와같이 코드를 추가했더니 해결됐다.

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

https://stackoverflow.com/questions/36399319/vue-router-return-404-when-revisit-to-the-url

 

Vue Router return 404 when revisit to the url

I just enable Vue router history mode. And it work fine when I visit to vue routing via v-href or href. But, when I try to refresh that page or go directly from browser address bar, it just return ...

stackoverflow.com

 

반응형