我在下面的server.js文件中定义了我的路由-
const express = require("express");
const path = require("path");
//Creating an instance of Express
const app = express();
// Serve only the static files form the pages directory
app.use(express.static(__dirname + "/"));
app.get("/home", function(req, res) {
res.sendFile(path.join(__dirname + "/index.html"));
});
app.get("/logo", function(req, res) {
res.sendFile(path.join(__dirname + "/pages/logo.html"));
});
app.listen(process.env.PORT || 3000);
当我在本地运行时,它可以工作。但是,当我使用AWS Amplify部署代码时,它只能加载index.html文件。在server.js文件中定义的路由的其余部分在放大中找不到404。
任何