我尝试过使用此代码:
配置/ http.js
middleware: {
order: [
'redirectToWWW',
'startRequestTimer',
'cookieParser',
'session',
'myRequestLogger',
'bodyParser',
'handleBodyParserError',
'compress',
'methodOverride',
'poweredBy',
'$custom',
'router',
'www',
'favicon',
'404',
'500'
],
redirectToWWW: function(req, res, next) {
var host = req.header("host");
if (host.match(/^www\..*/i)) {
next();
} else {
res.redirect(301, "https://www." + host);
}
}
它工作正常,但如果我到达网站/页面,它会将我重定向到网站索引而不是https://www版本的网站/页面。转到站点重定向到https://www版本的站点。
在config / bootstrap.js中我将端口从HTTP转发到HTTPS(它可以正常工作),所以我不确定这是否是造成问题的原因
if (sails.config.ssl && sails.config.ssl.key && sails.config.ssl.cert) {
require('express')()
.get('*', function (req, res) {
if (sails.config.httpsPort != 443) hostname += ':' + sails.config.httpsPort;
res.redirect('301', 'https://' + hostname + req.originalUrl)
}).listen(sails.config.httpPort);
sails.config.port = sails.config.httpsPort;
} else {
sails.config.port = sails.config.httpPort;
}
答案 0 :(得分:0)
我知道这是一个迟到的回复,但这是我最近遇到的一个问题。
完全按照您的操作行事,但您还需要将请求网址附加到重定向:
redirectToWWW: function(req, res, next) {
var host = req.header("host");
if (host.match(/^www\..*/i)) {
next();
} else {
res.redirect(301, "https://www." + host + req.url);
}
}
追加req.url包括路径和params(例如/foo/bar?id=bla
)
有关该主题的更多信息,请参阅the sails documentation。