Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. get.index = function (req, res) {
  2. if(req.secure) {
  3. res.render('index', { title: 'Welcome' });
  4. } else {
  5. res.redirect(301, 'https://mydomain.com/');
  6. }
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement