반응형
netlify로 올려놓았던 프로젝트에서 페이지 새로고침 시 Page Not Found가 뜨는 오류가 발생했다.
public 폴더에 redirects 추가
public 폴더에 _redirects 라는 이름의 파일을 만들고 아래와 같은 내용을 작성해주면 된다.
public/_redirects
/* /index.html 200
혹시 이 방법이 안된다면?
루트 디렉토리에 netlify.toml파일을 만들고 안의 내용을 아래와 같이 작성해주면 된다고 한다.
netlify.toml
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
References
반응형
'Trouble Shooting' 카테고리의 다른 글
[Github Actions] the process '/usr/bin/git' failed with exit code 128 해결 (0) | 2023.02.21 |
---|---|
[Nginx] 페이지 새로고침 시 Page Not Found 오류 해결 (1) | 2023.02.07 |
inefficient regular expression complexity in nth-check (0) | 2023.01.26 |
[React] 여러 개 요소 return할 때 key값 지정하기 (0) | 2022.12.19 |
[axios, jest] Cannot use import statement outside a module 에러 해결 (0) | 2022.11.14 |