nginx 设置首次访问跳转,通过cookie设置

location / {
if ($cookie_firstvisit != “1”) {
return 301 /login.html;
}
}

location = /login.html {
add_header Set-Cookie “firstvisit=1;Max-Age=1000”;
}

发表评论

邮箱地址不会被公开。 必填项已用*标注