Node, Express - CANNOT GET route
问题 I am building an Express app and having some issues with routing. My '/' route is working perfectly, however other routes are not. I've looked into other questions people have posted and these have not resolved my issues. I have a routes/index.js file: module.exports = function(app){ app.use('/', require('./routes/home')); app.use('/about', require('./routes/about')); } My routes/home.js: - WORKING! const express = require('express'); const router = express.Router(); router.get('/', function