如何为页面启用客户端cookie,以便在第一次调用页面时,它可以正常工作。当第二次或第三次调用同一页面时,它会被重定向到其他页面。 即,一次只能使用一个选项卡。 在其他选项卡中,默认序列有效。
答案 0 :(得分:1)
由于我们不知道你在说什么语言,我将使用伪代码!
if cookie 'times' is not set
set cookie 'times' to 1
else
set cookie 'times' to (value of cookie 'times' + 1)
if value of cookie 'times' >= 7
redirect to 'otherpage.html'
show normal stuff