live-server
Version:
simple development http server with live reload capability
14 lines (13 loc) • 329 B
JavaScript
// Single Page Apps - redirect to /#/
module.exports = function(req, res, next) {
if (req.method !== "GET" && req.method !== "HEAD")
next();
if (req.url !== '/') {
var route = req.url;
req.url = '/';
res.statusCode = 302;
res.setHeader('Location', req.url + '#' + route);
res.end();
}
else next();
}