【发布时间】:2021-03-26 01:01:04
【问题描述】:
不适用于子域上的 NodeJs 路由。 当我向子域提出请求时/我得到了很好的响应“主域 - 主页” 但是当我向子域/关于我提出请求时,我得到了错误
这是我的代码:
const app = express()
const bodyParser = require('body-parser')
const jwt = require("jsonwebtoken");
const path = require("path");
const server = require('http').createServer(app);
const db = require('./db/db');
const subdomain = require('express-subdomain')
var config = require('./config');
const port = 3000
app.get('/', (req, res) => {
res.send("Main domain - Homepage")
})
app.get('/about', (req, res) => {
res.send("Main domain - About")
})
server.listen(30000, function(){ console.log('Server started on ' + server.address().port); });```
Error is
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@subdomain to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
【问题讨论】:
-
这能回答你的问题吗? stackoverflow.com/questions/30951466/…
-
您应该将错误文本添加到您的问题中!
-
您能与我分享您的子域网址吗?我在节点上工作,表达子域。我可以帮你。
标签: node.js express routes subdomain