Node Angular.js Refresh 404 Not Found
- 
First Remove the:
app.use('/', index);Or Equivalents directives.
 - 
Then Edit Main app.js File and Append:
app.all('/*', function(req, res) { res.sendfile('app_client/index.html'); }); 
Reference: stackoverflow
First Remove the:
app.use('/', index);
Or Equivalents directives.
Then Edit Main app.js File and Append:
app.all('/*', function(req, res) { 
    res.sendfile('app_client/index.html'); 
});
Reference: stackoverflow