Created
June 6, 2014 00:40
-
-
Save tleen/31fa7fc6d42ecd6d0eb5 to your computer and use it in GitHub Desktop.
Express redirecting from mounted sub-apps / router
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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