Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. app.get('*', function(req, res, next){
  2. if(req.headers.host == 'sub.example.com') { //if it's a sub-domain
  3. app.use('/', sub_routes);
  4. }else{
  5. app.use('/', routes);
  6. }
  7. next();
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement