2013-01-02 3 views

답변

3

가장 쉬운 (그리고 빠른) 방법입니다이 있어야합니다

app.use(express.static(STATIC_DIR_HERE)); 
app.use(function notStatic(req, res, next) { 
    // everything here will be non-static routes 
}); 

(app 귀하의 명시 적 인스턴스 인 경우에)

: 당신의 '캐치 모든'앞서 미들웨어를 정적 파일 미들웨어를 넣어
관련 문제