我正在爲我的節點服務器編寫一些代碼,並且本地一切正常。但是,當我部署它,我得到臭名昭着的「無法GET /」404錯誤。我寫的所有其他路線都已成功(本地和雲端)。節點快遞服務器無法獲取「/」
我已經包含下面的代碼。我檢查了我的環境變量,並將它們全部對齊。如果你們有任何關於這個原因的理論,我們將非常感激。
//Use this route to make the entire app secure. This forces login for any path in the entire app.
app.use('/', passport.authenticate('main', {
noredirect: false //Don't redirect a user to the authentication page, just show an error
}),
express.static(path.join(__dirname, '../public'))
);