뭐든 즐기면서 ;)

React NginX 404 본문

Error

React NginX 404

Tada.*+ 2021. 11. 25. 20:56
728x90

에러 내용

http:localhost/ 최상위 url(root)을 요청하였을 때에는 index.html을 응답해 주지만, 다른 url(http:localhost/sample)을 요청했을 경우에는 SAP대로 동작하지 않고, url에 해당하는 html파일을 찾으려고 하기 때문에 404가 발생하는 것입니다.


해결 방법

nginx/nginx.conf 파일 또는 nginx/conf.d/vhosts.conf 내용 수정

server {
    listen 80;
    .....

    location / {
        # 아래 부분이 확인해야 할 부분입니다.
        try_files $uri $uir/ /index.html =404;
    }
}

nginx.conf
0.00MB

728x90
Comments