Skip to content

Instantly share code, notes, and snippets.

@tleen
Created June 6, 2014 00:40
Show Gist options
  • Save tleen/31fa7fc6d42ecd6d0eb5 to your computer and use it in GitHub Desktop.
Save tleen/31fa7fc6d42ecd6d0eb5 to your computer and use it in GitHub Desktop.
Express redirecting from mounted sub-apps / router
res redirect can use patterns to respect an existing external mount point for an express app/router:
res.redirect('/relative/to/host');
res.redirect('relative/to/mount-point');
res.redirect('./relative/to/pathname');
so if you wanted to redirect back to the root mount point for your mounted app, you could do this:
res.redirect('./');
handy!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment