카테고리 없음

vub js nginx 404 새로고침 404

노트에버 2022. 9. 27. 08:50

위치 /etc/nginx/conf.d/default.conf

 

 location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        try_files $uri $uri/ @rewrites;
  }

  location @rewrites {
        rewrite ^(.+)$ /index.html last;
  }