admin管理员组文章数量:1350324
I have a bunch of middleware. At the first app.use
I test if the process is under duress, and if so I want it to just send the static /index.html
file and redirect the user's browser to "/#" + req.url
.
for example:
app.set("port", PORT)
//etc
app.use(function(req, res, next) {
if (something)
res.sendfile('/public/index.html', { root: __dirname + '/..' })
// also, redirect the user to '/#' + req.url
else
next()
});
// a ton more middleware that deals with the main site
app.use(express.static(...))
Right now, it just sends the index.html to whatever url they're at. How can I redirect them to "/" and serve index.html without messing up any future middleware.
I have a bunch of middleware. At the first app.use
I test if the process is under duress, and if so I want it to just send the static /index.html
file and redirect the user's browser to "/#" + req.url
.
for example:
app.set("port", PORT)
//etc
app.use(function(req, res, next) {
if (something)
res.sendfile('/public/index.html', { root: __dirname + '/..' })
// also, redirect the user to '/#' + req.url
else
next()
});
// a ton more middleware that deals with the main site
app.use(express.static(...))
Right now, it just sends the index.html to whatever url they're at. How can I redirect them to "/" and serve index.html without messing up any future middleware.
Share Improve this question asked Nov 11, 2013 at 6:58 switzswitz 25.2k27 gold badges79 silver badges105 bronze badges 2-
You can obviously call
res.redirect('/')
but I have a feeling that's not exactly what you're looking for? – robertklep Commented Nov 11, 2013 at 7:58 - The static files are not mounted until after the app middleware, so redirecting to '/' doesn't return anything. – switz Commented Nov 11, 2013 at 16:02
1 Answer
Reset to default 8Not sure if I understand correctly, but try this:
app.use(function(req, res, next) {
if (something && req.path !== '/')
return res.redirect('/');
next();
});
app.get('/', function(req, res, next) {
if (something)
return res.sendfile('/public/index.html', { root: __dirname + '/..' });
next();
});
app.use(express.static(...));
本文标签: javascriptExpress sendfile and redirect urlStack Overflow
版权声明:本文标题:javascript - Express sendfile and redirect url - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743877856a2554657.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论