Guest User

Untitled

a guest
Jul 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. app.get('*', function(req, res){
  2. res.sendFile(__dirname+'/home.html');
  3. });
  4.  
  5. app.get('/urlA', function(req, res){
  6. res.sendFile(__dirname+'/home.html');
  7. });
  8.  
  9. app.get('/urlB', function(req, res){
  10. res.sendFile(__dirname+'/home.html');
  11. });
  12.  
  13. app.get('/urlA, /urlB', function(req, res){
  14. res.sendFile(__dirname+'/home.html');
  15. });
Add Comment
Please, Sign In to add comment