Skip to content

Instantly share code, notes, and snippets.

@tsraveling
Created March 15, 2019 17:58
Show Gist options
  • Save tsraveling/7552fcdc8ba2fdd266be2d780738aea2 to your computer and use it in GitHub Desktop.
Save tsraveling/7552fcdc8ba2fdd266be2d780738aea2 to your computer and use it in GitHub Desktop.
Catch all other URLs and 404s #express
//Other routes here
app.get('*', function(req, res){
res.send('Sorry, this is an invalid URL.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment