Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. app.use(
  2.   express.static(path.join(__dirname, "/public"), {
  3.     maxage: 86400000 * 7
  4.   })
  5. );
  6.  
  7. app.get("/user*", function(req, res) {
  8.   if (req.session && req.session.logged) {
  9.     res.sendFile(
  10.       path.join(__dirname, "/public", "/pages", "/dashboard", "index.html")
  11.     );
  12.   } else {
  13.     res.redirect("/");
  14.   }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement