gpt4 book ai didi

node.js - 使用 Node/Express 将 http 重定向到 https

转载 作者:太空宇宙 更新时间:2023-11-03 13:47:54 24 4
gpt4 key购买 nike

我有一个由 Parse.com 托管的网站。它在 Node.js/Express.js 3 上运行。如果有人使用 http 访问域,我只是想强制使用 https。可能吗?

他们有一些文档,但我不确定如何应用它: https://parse.com/docs/js/symbols/parseExpressHttpsRedirect.html

最佳答案

它准确描述了如何在该页面上使用它:

To use this middleware, you must require it from your JavaScript file:

var parseExpressHttpsRedirect = require('parse-express-https-redirect');

Then you can use the middleware to redirect all requests to HTTPS.

app.use(parseExpressHttpsRedirect());

所以在代码中:

var parseExpressHttpsRedirect = require('parse-express-https-redirect');

// ... later on when you're initializing your express app ...
app.use(parseExpressHttpsRedirect());

关于node.js - 使用 Node/Express 将 http 重定向到 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25812972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com