当用户第一次打开网站时,重定向到页面一次


redirect to page for one time when user open the website for first time

当用户第一次打开网站时,我如何一次重定向到页面?(首选laravel

检查用户是否拥有cookie。如果确实有,重定向,否则,设置cookie并让它顺其自然。

将IP地址保存在数据库中,并检查IP是否已经存在。如果没有插入并进行重定向:

Redirect::to('user/firsttime')->with('message', 'Welcome this is your first time here');