HTML5Mode, , root ( index.html). "Web.com/index.html". , , Sails Angular, . , -, Angular, index.html AJAX.
, "", , , Angular , , . , Angular
X-Requested-With = XMLHttpRequest
module.exports = function(req, res, next) {
// Checks if this is an ajax request
// If True then skip this and return requested content
// If False then return the index (or root) page
if (if !req.isAjax) {
return res.view("/index");
}
return next();
};