Trouble Shooting

[Netlify] 페이지 새로고침 시 Page Not Found 오류 해결

SH_Roh 2023. 2. 6. 20:16
반응형

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

https://stackoverflow.com/questions/58065603/netlify-renders-404-on-page-refresh-using-react-and-react-router

 

반응형