Redirect to different page url in Node.js (Not in express or other frameworks)

前端 未结 3 996
[愿得一人]
[愿得一人] 2021-01-12 05:30

I want to redirect user from one page to another page in Node.js (plain node.js)

Real life scenario: Afer signup (example.com/sigup), after successful signup I want

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-12 05:46

    A simpler way :

    res.redirect(307, '/login');
    

    Find more details in the answer of this post

提交回复
热议问题