我正在开发完整的MEAN堆栈Web应用程序。目前,我的应用正在监听localhost:3000。 js中有什么方法可以设置诸如www.something.com之类的URL,它将重定向到localhost:3000。以下是我已实现的示例服务器代码。

#!/usr/bin/env node
var debug = require('debug')('passport-mongo');
var app = require('./app');


app.set('port', process.env.PORT || 3000);


var server = app.listen(app.get('port'), function() {
   debug('Express server listening on port ' + server.address().port);
});

最佳答案

如果只想在PC上本地执行此操作,则可以编辑C:\Windows\System32\drivers\etc\hosts文件。

替换以下行:

127.0.0.1 localhost

与行:

127.0.0.1 www.example.com

如果要访问端口3000,则必须在浏览器中键入www.example.com:3000

关于javascript - 在JavaScript上设置网址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48263823/

10-15 19:14