0
노드 & Express를 사용하여 서버를 설정했습니다. GET /을 제외한 모든 경로가 작동합니다. 보내지는 파일을 보여주는 대신 항상 index.html (공용 폴더에도 있음)을 보여줍니다. index.html의 이름을 다른 것으로 변경하거나 제거하면 GET/routing이 작동합니다.index.html에 대한 자동 라우팅 억제
const publicPath = path.join(__dirname, '../public');
app.use(express.static(publicPath));
app.get('/', (req, res) => {
res.sendFile(publicPath + '/login-register.html');
});
index.html의 자동 렌더링을 억제하는 방법이 있습니까?
편집 : 유용 할 수도 있습니다. 내 콘솔이나 Chrome 개발자 도구에서 오류가 발생하지 않습니다.