根据我的要求,我需要显示一个页面firstpage.php
对于访问我的网站的用户first time
否则应显示主页homepage.php
我将这两个页面创建为page-templates
为此,到目前为止,我已使用以下代码成功设置使用cookie
if (!isset($_COOKIE[\'visited\'])) { // no cookie, so probably the first time here
setcookie (\'visited\', \'yes\', time() + 3600); // set visited cookie
header("Location: index.php");
exit(); // always use exit after redirect to prevent further loading of the page
}
else{
header("Location: index.php/first-page/");
}
当我使用上述代码时,它并没有被重定向到所需的URL,从而导致了一个错误。
页面未正确重定向