在 NodeJs 应用程序上工作,我想欺骗浏览器以保持 http,最新版本的浏览器不断将其重定向到 https。
我知道它不推荐,但它仅适用于 PoC,因此不存在不安全通信的重大问题。
var port = 80;
server.listen(port, function () {
console.log('webapp: listening at port %d', port);
});
// Routing
const currentDirectory = path.join(__dirname, '../', 'webapp');
app
.get('/', applyTemplate('index.html'))
.get('/index.html', applyTemplate('index.html'))
.use(express.static(currentDirectory))
我可以欺骗浏览器吗?处理 https 连接并将其重定向到 http 而不创建 ssl 证书。